Alexandre Bodin 2d59716f5d Cleanup CTB
2021-06-30 22:52:12 +02:00

34 lines
615 B
JSON

{
"collectionName": "components_dishes",
"info": {
"name": "dish",
"description": "",
"icon": "address-book"
},
"attributes": {
"name": {
"type": "string",
"required": false,
"default": "My super dish"
},
"description": {
"type": "text"
},
"price": {
"type": "float"
},
"picture": {
"type": "media",
"required": false
},
"very_long_description": {
"type": "richtext"
},
"categories": {
"type": "relation",
"relation": "oneToOne",
"target": "application::category.category"
}
}
}