mirror of
https://github.com/oceanprotocol/commons.git
synced 2023-03-15 18:03:00 +01:00
44 lines
1.0 KiB
JSON
44 lines
1.0 KiB
JSON
{
|
|
"title": "A cool form title",
|
|
"description": "A cool form description",
|
|
"fields": {
|
|
"name": {
|
|
"label": "Your name",
|
|
"placeholder": "i.e. Jelly McJellyfish",
|
|
"type": "text",
|
|
"required": true,
|
|
"help": "Help me"
|
|
},
|
|
"email": {
|
|
"label": "Your email",
|
|
"placeholder": "i.e. jelly@mcjellyfish.com",
|
|
"type": "email",
|
|
"required": true
|
|
},
|
|
"message": {
|
|
"label": "Your message",
|
|
"placeholder": "i.e. jelly@mcjellyfish.com",
|
|
"type": "textarea",
|
|
"required": true
|
|
},
|
|
"about": {
|
|
"label": "About you",
|
|
"type": "radio",
|
|
"required": true,
|
|
"options": ["I can provide more data", "I want to use more data"]
|
|
},
|
|
"about2": {
|
|
"label": "About you",
|
|
"type": "checkbox",
|
|
"required": true,
|
|
"options": ["I can provide data", "I want to use data"]
|
|
},
|
|
"industry": {
|
|
"label": "Industry",
|
|
"type": "select",
|
|
"required": true,
|
|
"options": ["Automotive", "Technology"]
|
|
}
|
|
}
|
|
}
|