mirror of
https://github.com/strapi/strapi.git
synced 2025-09-25 16:29:34 +00:00
51 lines
916 B
JSON
51 lines
916 B
JSON
{
|
|
"kind": "collectionType",
|
|
"collectionName": "articles",
|
|
"info": {
|
|
"name": "article"
|
|
},
|
|
"options": {
|
|
"increments": true,
|
|
"timestamps": true
|
|
},
|
|
"attributes": {
|
|
"name": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"content": {
|
|
"type": "component",
|
|
"repeatable": false,
|
|
"component": "blog.content"
|
|
},
|
|
"content2repet": {
|
|
"type": "component",
|
|
"repeatable": true,
|
|
"component": "blog.content"
|
|
},
|
|
"dz": {
|
|
"type": "dynamiczone",
|
|
"components": [
|
|
"blog.content",
|
|
"blog.sub"
|
|
]
|
|
},
|
|
"address": {
|
|
"model": "address"
|
|
},
|
|
"category": {
|
|
"model": "category"
|
|
},
|
|
"rep": {
|
|
"type": "component",
|
|
"repeatable": true,
|
|
"component": "blog.rep"
|
|
},
|
|
"not": {
|
|
"type": "component",
|
|
"repeatable": false,
|
|
"component": "blog.sub"
|
|
}
|
|
}
|
|
}
|