mirror of
https://github.com/strapi/strapi.git
synced 2026-01-05 03:38:09 +00:00
34 lines
671 B
JSON
Executable File
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"
|
|
}
|
|
}
|
|
}
|