Skip to main content

collection_v3_11.json

collection.json Copy Json { "$schema": "http://json-schema.org/draft-04/schema#", "type": "object", "properties": { "name": { "de...

Updated over 3 weeks ago

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"
	]
}
Did this answer your question?