-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_structure.json
69 lines (69 loc) · 1.54 KB
/
sample_structure.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"title": "Menu 1",
"categories": [
{
"title": "Category 1",
"products": [
{
"id": 1,
"title": "Item 2",
"subproducts": [
{
"id": 1,
"title": "Modifier 1",
"type": "toggle",
"value": "on",
"rules": {
"required": false
},
"order": 0
},
{
"id": 3,
"title": "Modifier 3",
"type": "toggle",
"value": "on",
"rules": {
"required": false
},
"order": 1
}
],
"subproduct_groups": {
"title": "Subproduct Group 1",
"description": "Description 1",
"type": "toggle",
"value": "off",
"subproducts": [
{
"id": 1,
"title": "Modifier 1",
"rules": {
"required": false
},
"order": 0
},
{
"id": 3,
"title": "Modifier 3",
"value": "on",
"rules": {
"required": false
},
"order": 1
}
],
"rules": {
"required": true,
"min": 2,
"max": 5
},
"order": 0
},
"order": 0
}
],
"order": 0
}
]
}