mirror of
https://github.com/strapi/strapi.git
synced 2025-12-30 16:53:05 +00:00
34 lines
615 B
JSON
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"
|
|
}
|
|
}
|
|
}
|