collection.json
Copy Json
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"name": {
"description": "the name of the collection, cannot start or end with whitespace and has minimum of 3 characters",
"type": "string",
"pattern": "^[\\S].*[\\S]{2,}$"
},
"locales": {
"description": "hold the translation to the collection name",
"type": "object",
"$ref": "locales.json"
}
},
"required": [
"name"
]
}