mirror of
https://github.com/strapi/strapi.git
synced 2026-01-07 12:45:45 +00:00
28 lines
485 B
JSON
Executable File
28 lines
485 B
JSON
Executable File
{
|
|
"kind": "collectionType",
|
|
"collectionName": "countries",
|
|
"info": {
|
|
"displayName": "Country",
|
|
"singularName": "country",
|
|
"pluralName": "countries",
|
|
"description": ""
|
|
},
|
|
"options": {
|
|
"draftAndPublish": false,
|
|
"comment": ""
|
|
},
|
|
"attributes": {
|
|
"name": {
|
|
"type": "string",
|
|
"required": true,
|
|
"minLength": 3
|
|
},
|
|
"code": {
|
|
"type": "string",
|
|
"maxLength": 3,
|
|
"unique": true,
|
|
"minLength": 2
|
|
}
|
|
}
|
|
}
|