{
  "kind": "collectionType",
  "collectionName": "products",
  "info": {
    "name": "Products"
  },
  "options": {
    "increments": true,
    "timestamps": true
  },
  "attributes": {
    "name": {
      "type": "string",
      "unique": true,
      "required": true
    },
    "description": {
      "type": "richtext"
    },
    "price": {
      "type": "biginteger"
    },
    "product_categories": {
      "collection": "product-category",
      "via": "products"
    },
    "colors": {
      "collection": "color",
      "via": "products"
    },
    "image": {
      "collection": "file",
      "via": "related",
      "allowedTypes": [
        "images"
      ],
      "plugin": "upload",
      "required": false
    },
    "discount": {
      "type": "biginteger"
    },
    "brands": {
      "collection": "brands",
      "via": "products"
    },
    "quantity": {
      "type": "biginteger"
    },
    "product_sub_category": {
      "model": "product-sub-categories",
      "via": "products"
    },
    "reviews": {
      "via": "product",
      "collection": "reviews"
    },
    "sizes": {
      "collection": "sizes"
    },
    "reorderLevel": {
      "type": "biginteger"
    },
    "sku": {
      "type": "string"
    }
  }
}
