mirror of
https://github.com/strapi/strapi.git
synced 2026-01-08 13:17:47 +00:00
42 lines
819 B
JSON
Executable File
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"
|
|
}
|
|
}
|
|
}
|