mirror of
https://github.com/strapi/strapi.git
synced 2026-02-04 14:31:19 +00:00
27 lines
457 B
JSON
Executable File
27 lines
457 B
JSON
Executable File
{
|
|
"connection": "default",
|
|
"collectionName": "countries",
|
|
"info": {
|
|
"name": "country",
|
|
"description": ""
|
|
},
|
|
"options": {
|
|
"increments": true,
|
|
"timestamps": ["created_at", "updated_at"],
|
|
"comment": ""
|
|
},
|
|
"attributes": {
|
|
"name": {
|
|
"type": "string",
|
|
"required": true,
|
|
"minLength": 3
|
|
},
|
|
"code": {
|
|
"type": "string",
|
|
"maxLength": 3,
|
|
"unique": true,
|
|
"minLength": 2
|
|
}
|
|
}
|
|
}
|