mirror of
https://github.com/strapi/strapi.git
synced 2026-01-28 10:54:03 +00:00
50 lines
944 B
JSON
Executable File
50 lines
944 B
JSON
Executable File
{
|
|
"connection": "default",
|
|
"collectionName": "addresses",
|
|
"info": {
|
|
"name": "address",
|
|
"description": ""
|
|
},
|
|
"options": {
|
|
"increments": true,
|
|
"timestamps": ["created_at", "updated_at"],
|
|
"comment": ""
|
|
},
|
|
"attributes": {
|
|
"geolocation": {
|
|
"type": "json",
|
|
"required": true
|
|
},
|
|
"city": {
|
|
"type": "string",
|
|
"required": true
|
|
},
|
|
"postal_coder": {
|
|
"type": "string"
|
|
},
|
|
"categories": {
|
|
"collection": "category",
|
|
"via": "addresses",
|
|
"dominant": true
|
|
},
|
|
"cover": {
|
|
"model": "file",
|
|
"via": "related",
|
|
"plugin": "upload",
|
|
"required": false,
|
|
"allowedTypes": ["images", "cover"]
|
|
},
|
|
"images": {
|
|
"collection": "file",
|
|
"via": "related",
|
|
"plugin": "upload",
|
|
"required": false,
|
|
"allowedTypes": []
|
|
},
|
|
"full_name": {
|
|
"type": "string",
|
|
"required": true
|
|
}
|
|
}
|
|
}
|