mirror of
https://github.com/strapi/strapi.git
synced 2026-01-07 20:58:16 +00:00
40 lines
653 B
JSON
Executable File
40 lines
653 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": {
|
|
"via": "review",
|
|
"collection": "like"
|
|
},
|
|
"author": {
|
|
"model": "user",
|
|
"plugin": "users-permissions"
|
|
},
|
|
"restaurant": {
|
|
"model": "restaurant"
|
|
}
|
|
}
|
|
}
|