Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 789 Bytes

form_config.md

File metadata and controls

40 lines (32 loc) · 789 Bytes

Form configuration

Form are based on LiForm format.

See LiForm documentation

Reserved keyword

  • __notify_email Name your field with this keyword in order to send email to user when upload has been processed.
{
    "properties": {
        "__notify_email": {
            "title": "Notify me when done!",
            "type": "boolean"
        }
    }
}

Hard coded form data (Bulk data)

Uploader can define custom form data for a specific client. In the Bulk data section of the upload (you must be an admin), you can edit the data JSON that will be applied to every assets:

{
  "my-key": "my-value",
  "key2": 1.5,
  "key-array": [
    "item1",
    "item2"
  ],
  "key-object": {
    "foo": "bar"
  }
}