mirror of
https://github.com/strapi/strapi.git
synced 2026-01-06 04:03:25 +00:00
30 lines
475 B
JSON
Executable File
30 lines
475 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
|
|
}
|
|
}
|
|
}
|