strapi/examples/getstarted/api/articles/models/Articles.settings.json
2019-07-09 14:45:52 +02:00

40 lines
629 B
JSON

{
"connection": "default",
"collectionName": "articles",
"info": {
"name": "articles",
"description": ""
},
"options": {
"increments": true,
"timestamps": [
"created_at",
"updated_at"
],
"comment": ""
},
"attributes": {
"title": {
"type": "string"
},
"content": {
"type": "text"
},
"published": {
"type": "boolean"
},
"value": {
"type": "integer"
},
"posts": {
"collection": "post",
"via": "articles"
},
"image": {
"model": "file",
"via": "related",
"plugin": "upload"
}
}
}