{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "LayerDefinition",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "Layer to SpaceID mapping Object",
	"properties" : {
		"id" : {
			"type" : "string",
			"description" : "Name/ID of space as defined by the layer"
		},

		"spaces" : {
			"type" : "array",
			"description" : "Mapping of the space IDs",
			"items" : {
				"$ref" : "/resources/schema/common/v1/CountryState.json",
				"description" : "Each element has to be instance of SpaceId"
			}
		}
	},

	"required" : 
	[
		"id",
		"spaces"
	]
}