mirror of
https://github.com/strapi/strapi.git
synced 2025-12-28 15:44:59 +00:00
34 lines
591 B
JSON
34 lines
591 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": {
|
|
"model": "file",
|
|
"via": "related",
|
|
"plugin": "upload",
|
|
"required": false
|
|
},
|
|
"very_long_description": {
|
|
"type": "richtext"
|
|
},
|
|
"categories": {
|
|
"collection": "category"
|
|
}
|
|
}
|
|
}
|