Customizing your submission form
You can customize your venue’s submission form using the Revision button on your venue request form. New fields can be entered in different JSON formats depending on the API version your venue is using. Notice that the JSON is surrounded by a single set of curly braces, as shown below:
API 2
{
"confirmation": {
"description": "Please confirm you have read the workshop's policies.",
"order": 2,
"value": {
"param": {
"type": "string",
"enum": [
"I have read and agree with the workshop's policy on behalf of myself and my co-authors."
],
"input": "radio"
}
}
}
}
API 1
{
"confirmation": {
"description": "Please confirm you have read the workshop's policies.",
"value-radio": [
"I have read and agree with the workshop's policy on behalf of myself and my co-authors."
],
"order": 2,
"required": true
}
}
To remove fields, enter a comma-separated list of lowercase field names in the ‘Remove Submission Options’ field. To learn more about accepted field types, refer here.
Last modified 11d ago