strapi/examples/getstarted/api/article/models/Article.settings.json

52 lines
814 B
JSON
Raw Normal View History

2019-06-13 15:36:05 +02:00
{
"connection": "default",
"collectionName": "articles",
2019-06-13 15:36:05 +02:00
"info": {
"name": "article",
2019-06-13 15:36:05 +02:00
"description": ""
},
"options": {
"increments": true,
2019-07-05 14:59:31 +02:00
"timestamps": [
"created_at",
"updated_at"
],
2019-06-13 15:36:05 +02:00
"comment": ""
},
"attributes": {
"title": {
2019-06-13 15:36:05 +02:00
"type": "string"
},
"content": {
"type": "text"
2019-07-05 14:59:31 +02:00
},
"json": {
"type": "string"
},
"number": {
"type": "integer"
},
"date": {
"type": "date"
},
"enum": {
"enum": [
"morning,",
"noon"
],
"type": "enumeration"
},
"pic": {
"model": "file",
"via": "related",
"plugin": "upload"
},
"bool": {
"type": "boolean"
},
"tags": {
"collection": "tag",
"via": "articles"
2019-06-13 15:36:05 +02:00
}
}
}