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

32 lines
633 B
JSON
Executable File

{
"kind": "collectionType",
"collectionName": "menus",
"info": {
"description": "",
"displayName": "Menu",
"singularName": "menu",
"pluralName": "menus"
},
"options": {
"draftAndPublish": false,
"comment": ""
},
"attributes": {
"description": {
"type": "text"
},
"menusections": {
"type": "relation",
"relation": "oneToMany",
"target": "api::menusection.menusection",
"mappedBy": "menu"
},
"restaurant": {
"type": "relation",
"target": "api::restaurant.restaurant",
"relation": "oneToOne",
"mappedBy": "menu"
}
}
}