strapi/examples/getstarted/api/review/models/Review.settings.json
2019-08-28 17:20:53 +02:00

39 lines
652 B
JSON
Executable File

{
"connection": "default",
"collectionName": "reviews",
"info": {
"name": "review",
"description": ""
},
"options": {
"increments": true,
"timestamps": [
"created_at",
"updated_at"
],
"comment": ""
},
"attributes": {
"comment": {
"type": "text",
"required": true
},
"rating": {
"type": "integer",
"required": true,
"min": 1,
"max": 5
},
"likes": {
"collection": "like",
"via": "review"
},
"author": {
"model": "user",
"plugin": "users-permissions"
},
"restaurant": {
"model": "restaurant"
}
}
}