-
Notifications
You must be signed in to change notification settings - Fork 1
/
property.json
37 lines (37 loc) · 973 Bytes
/
property.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "Checkbox List",
"properties": [{
"name": "Data",
"fields": {
"label": {
"name": "Label",
"type": "string",
"value": "Untitled Checkbox List"
},
"data": {
"name": "Choices",
"type": "list",
"value": ["First Choice","Second Choice","Third Choice"]
}
}
}, {
"name": "Properties",
"fields": {
"required": {
"name": "Mandatory Field",
"type": "Boolean",
"value": true
},
"inline": {
"name": "Horizontal List",
"type": "Boolean",
"value": false
},
"checkboxRight": {
"name": "Right Align Checkboxes",
"type": "Boolean",
"value": false
}
}
}]
}