strapi/examples/getstarted/api/address/models/Address.settings.json
2019-11-21 15:06:38 +01:00

42 lines
717 B
JSON
Executable File

{
"connection": "default",
"collectionName": "addresses",
"info": {
"name": "address",
"description": ""
},
"options": {
"increments": true,
"timestamps": ["created_at", "updated_at"],
"comment": ""
},
"attributes": {
"full_name": {
"type": "string"
},
"postal_code": {
"type": "string"
},
"city": {
"type": "string"
},
"geolocation": {
"type": "json",
"required": true
},
"country": {
"model": "country"
},
"cover": {
"model": "file",
"via": "related",
"plugin": "upload"
},
"images": {
"collection": "file",
"via": "related",
"plugin": "upload"
}
}
}