mirror of
https://github.com/strapi/strapi.git
synced 2026-01-02 10:12:57 +00:00
42 lines
717 B
JSON
Executable File
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"
|
|
}
|
|
}
|
|
}
|