strapi/examples/getstarted/components/nested/compo-with-nested.json

25 lines
488 B
JSON
Raw Normal View History

2019-12-05 16:27:55 +01:00
{
"connection": "default",
"collectionName": "components_nested_compo_with_nesteds",
"info": {
"name": "compo with nested",
"icon": "address-card"
},
"attributes": {
"something": {
"type": "string",
"default": "default value",
"required": true,
"unique": true
},
"nestcompofield": {
"type": "component",
"repeatable": false,
"component": "nested.nested-compo"
2019-12-05 17:49:02 +01:00
},
"zzzz": {
"type": "string"
2019-12-05 16:27:55 +01:00
}
}
}