strapi/examples/getstarted/components/blog/text_with_image.json

21 lines
379 B
JSON
Raw Normal View History

2019-11-07 14:06:50 +01:00
{
"info": {
"name": "text_with_image",
"description": ""
},
"connection": "default",
"collectionName": "components_text_with_images",
"attributes": {
"content": {
"type": "richtext",
"default": "my super content"
},
"picture": {
"model": "file",
"via": "related",
"plugin": "upload",
"required": true
}
}
}