strapi/examples/getstarted/components/default/restaurantservice.json

21 lines
375 B
JSON
Raw Normal View History

2019-08-22 14:10:45 +02:00
{
"info": {
"name": "restaurantservice",
"description": ""
},
"connection": "default",
2019-10-22 18:01:03 +02:00
"collectionName": "components_restaurantservices",
2019-08-22 14:10:45 +02:00
"attributes": {
"name": {
"type": "string",
2019-10-28 11:08:26 +01:00
"required": true,
"default": "something"
2019-08-22 14:10:45 +02:00
},
"is_available": {
"type": "boolean",
"required": true,
"default": true
}
}
2019-10-22 18:01:03 +02:00
}