strapi/examples/getstarted/components/default/restaurantservice.json
2019-11-29 09:14:31 +01:00

27 lines
493 B
JSON

{
"connection": "default",
"collectionName": "components_restaurantservices",
"info": {
"name": "restaurantservice",
"description": "",
"icon": "cannabis"
},
"attributes": {
"name": {
"type": "string",
"required": true,
"default": "something"
},
"media": {
"model": "file",
"via": "related",
"plugin": "upload"
},
"is_available": {
"type": "boolean",
"required": true,
"default": true
}
}
}