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,}$"
}
},
"required": [
"name"
]
}