strapi/examples/getstarted/groups/Ingredients.json
Alexandre Bodin 06a1b023c3 Clean up code
2019-07-18 19:37:32 +02:00

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"
}
}
}