strapi/examples/getstarted/components/nested/compo-with-nested.json
2019-12-05 17:49:02 +01:00

25 lines
488 B
JSON

{
"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"
},
"zzzz": {
"type": "string"
}
}
}