{
  "kind": "collectionType",
  "collectionName": "products",
  "info": {
    "singularName": "product",
    "pluralName": "products",
    "displayName": "Product"
  },
  "options": {
    "draftAndPublish": false,
    "comment": ""
  },
  "pluginOptions":{
    "content-manager":{
      "visible": true
    },
    "content-type-builder":{
      "visible" : false
    }
  },
  "attributes": {
    "title": {
      "type": "string",
      "required": true
    },
    "description": {
      "type": "text",
      "required": true
    },
    "price": {
      "type": "decimal",
      "required": true
    },
    "quantity": {
      "type": "integer",
      "required": true
    },
    "image": {
      "type": "media",
      "allowedTypes": [
        "images"
      ],
      "multiple": true,
      "required": true
    }
  }
}