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

34 lines
671 B
JSON
Executable File

{
"kind": "collectionType",
"collectionName": "menusections",
"info": {
"displayName": "Menu Section",
"singularName": "menusection",
"pluralName": "menusections",
"description": ""
},
"options": {
"draftAndPublish": false,
"comment": ""
},
"attributes": {
"name": {
"type": "string",
"required": true,
"minLength": 6
},
"dishes": {
"component": "default.dish",
"type": "component",
"repeatable": true,
"required": true
},
"menu": {
"type": "relation",
"relation": "manyToOne",
"target": "api::menu.menu",
"inversedBy": "menusections"
}
}
}