strapi/examples/getstarted/api/address/models/Address.settings.json

42 lines
717 B
JSON
Raw Normal View History

2019-08-22 14:10:45 +02:00
{
"connection": "default",
"collectionName": "addresses",
"info": {
"name": "address",
"description": ""
},
"options": {
"increments": true,
"timestamps": ["created_at", "updated_at"],
2019-08-22 14:10:45 +02:00
"comment": ""
},
"attributes": {
"full_name": {
"type": "string"
},
"postal_code": {
"type": "string"
},
"city": {
"type": "string"
},
"geolocation": {
2019-11-21 15:06:38 +01:00
"type": "json",
"required": true
2019-08-22 14:10:45 +02:00
},
"country": {
"model": "country"
},
"cover": {
"model": "file",
"via": "related",
"plugin": "upload"
},
"images": {
"collection": "file",
"via": "related",
"plugin": "upload"
2019-08-22 14:10:45 +02:00
}
}
2019-11-08 13:25:15 +01:00
}