| 1 |
{ |
| 2 |
"$schema": "https://json.schemastore.org/block.json", |
| 3 |
"apiVersion": 2, |
| 4 |
"name": "srfm/form", |
| 5 |
"title": "Form", |
| 6 |
"description": "Collect and Manage data effortlessly with customizable SureForms.", |
| 7 |
"category": "sureforms", |
| 8 |
"keywords": [ "form", "sureforms", "form" ], |
| 9 |
"textdomain": "sureforms", |
| 10 |
"supports": { |
| 11 |
"reusable": false, |
| 12 |
"html": false |
| 13 |
}, |
| 14 |
"attributes": { |
| 15 |
"isPreview": { |
| 16 |
"type": "boolean", |
| 17 |
"default": false |
| 18 |
}, |
| 19 |
"showTitle": { |
| 20 |
"type": "boolean", |
| 21 |
"default": false |
| 22 |
}, |
| 23 |
"id": { |
| 24 |
"type": "number" |
| 25 |
}, |
| 26 |
"title": { |
| 27 |
"type": "string" |
| 28 |
}, |
| 29 |
"choices": { |
| 30 |
"type": "array" |
| 31 |
}, |
| 32 |
"template": { |
| 33 |
"type": "string" |
| 34 |
}, |
| 35 |
"choice_type": { |
| 36 |
"type": "string", |
| 37 |
"enum": [ "all", "checkbox", "radio" ], |
| 38 |
"default": "all" |
| 39 |
} |
| 40 |
} |
| 41 |
} |
| 42 |
|