strapi/examples/getstarted/api/country/models/Country.settings.json
2021-08-23 09:58:15 +02:00

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
}
}
}