project-configuration.json
779 Bytes
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
{
"collectionName": "components_layout_project_configurations",
"info": {
"displayName": "Project Configuration",
"icon": "bed",
"description": ""
},
"options": {},
"attributes": {
"title": {
"type": "string",
"required": true
},
"saleableArea": {
"type": "integer"
},
"carpetArea": {
"type": "integer"
},
"price": {
"type": "decimal"
},
"bedrooms": {
"type": "decimal",
"required": true,
"max": 20,
"min": 1
},
"pricePerCarpetSqft": {
"type": "decimal"
},
"pricePerSaleableSqft": {
"type": "decimal"
},
"unitPlanImages": {
"type": "component",
"repeatable": true,
"component": "layout.project-image"
}
}
}