mirror of
https://github.com/strapi/strapi.git
synced 2025-12-29 16:16:20 +00:00
37 lines
636 B
JSON
Executable File
37 lines
636 B
JSON
Executable File
{
|
|
"info": {
|
|
"name": "dish",
|
|
"description": ""
|
|
},
|
|
"connection": "default",
|
|
"collectionName": "components_dishes",
|
|
"attributes": {
|
|
"name": {
|
|
"type": "string",
|
|
"required": true,
|
|
"default": "My super dish"
|
|
},
|
|
"description": {
|
|
"type": "text"
|
|
},
|
|
"price": {
|
|
"type": "float"
|
|
},
|
|
"address": {
|
|
"model": "address"
|
|
},
|
|
"addresses": {
|
|
"collection": "address"
|
|
},
|
|
"picture": {
|
|
"model": "file",
|
|
"via": "related",
|
|
"plugin": "upload",
|
|
"required": false
|
|
},
|
|
"very_long_description": {
|
|
"type": "richtext"
|
|
}
|
|
}
|
|
}
|