strapi/examples/getstarted/api/review/models/Review.settings.json
2021-08-23 09:58:15 +02:00

42 lines
819 B
JSON
Executable File

{
"collectionName": "reviews",
"info": {
"displayName": "Review",
"singularName": "review",
"pluralName": "reviews",
"description": ""
},
"options": {
"draftAndPublish": false,
"comment": ""
},
"attributes": {
"comment": {
"type": "text",
"required": true
},
"rating": {
"type": "integer",
"required": true,
"min": 1,
"max": 5
},
"likes": {
"type": "relation",
"relation": "oneToMany",
"target": "api::like.like",
"mappedBy": "review"
},
"author": {
"type": "relation",
"relation": "oneToOne",
"target": "plugin::users-permissions.user"
},
"restaurant": {
"type": "relation",
"relation": "oneToOne",
"target": "api::restaurant.restaurant"
}
}
}