Blame view

src/components/layout/project-configuration.json 779 Bytes
1 2 3 4
{
  "collectionName": "components_layout_project_configurations",
  "info": {
    "displayName": "Project Configuration",
Harish Patel committed
5 6
    "icon": "bed",
    "description": ""
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
  },
  "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"
Harish Patel committed
34 35 36 37 38
    },
    "unitPlanImages": {
      "type": "component",
      "repeatable": true,
      "component": "layout.project-image"
39 40 41
    }
  }
}