strapi/examples/getstarted/api/menusection/models/Menusection.settings.json
2019-11-25 15:16:06 +01:00

33 lines
554 B
JSON
Executable File

{
"connection": "default",
"collectionName": "menusections",
"info": {
"name": "menusection",
"description": ""
},
"options": {
"increments": true,
"timestamps": [
"created_at",
"updated_at"
],
"comment": ""
},
"attributes": {
"name": {
"type": "string",
"required": true,
"minLength": 6
},
"dishes": {
"component": "default.dish",
"type": "component",
"repeatable": true
},
"menu": {
"model": "menu",
"via": "menusections"
}
}
}