mirror of
https://github.com/strapi/strapi.git
synced 2025-12-30 08:43:28 +00:00
27 lines
457 B
JSON
27 lines
457 B
JSON
{
|
|
"collectionName": "group_ingredients",
|
|
"connection": "default",
|
|
"attributes": {
|
|
"name": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"quantity": {
|
|
"type": "float",
|
|
"required": true
|
|
},
|
|
"enum": {
|
|
"type": "enumeration",
|
|
"enum": ["morning", "noon"]
|
|
},
|
|
"pic": {
|
|
"model": "file",
|
|
"via": "related",
|
|
"plugin": "upload"
|
|
},
|
|
"article": {
|
|
"model": "article"
|
|
}
|
|
}
|
|
}
|