{
  "kind": "collectionType",
  "collectionName": "reviews",
  "info": {
    "name": "Reviews"
  },
  "options": {
    "increments": true,
    "timestamps": true
  },
  "attributes": {
    "name": {
      "type": "string"
    },
    "rating": {
      "type": "integer",
      "min": 1,
      "max": 5
    },
    "ratingText": {
      "type": "string"
    },
    "comment": {
      "type": "text"
    },
    "product": {
      "model": "products",
      "via": "reviews"
    },
    "customer": {
      "model": "customers"
    }
  }
}
