2019-12-11 17:37:31 +01:00

35 lines
610 B
JSON

{
"connection": "default",
"collectionName": "components_dishes",
"info": {
"name": "dish",
"description": "",
"icon": "address-book"
},
"attributes": {
"name": {
"type": "string",
"required": true,
"default": "My super dish"
},
"description": {
"type": "text"
},
"price": {
"type": "float"
},
"picture": {
"model": "file",
"via": "related",
"plugin": "upload",
"required": false
},
"very_long_description": {
"type": "richtext"
},
"category": {
"model": "category"
}
}
}