{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "SpaceDefinition",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "SpaceID to Layer-space mapping Object",
	"properties" : {
		"space_id" : {
			"$ref" : "/resources/schema/common/v1/CountryState.json",
			"description" : "SpaceId to be mapped for layer-specific spaces"
		},

		"layers" : {
			"type" : "array",
			"description" : "Layer-specific spaces",
			"items" : {
				"type" : "string",
				"description" : "Each element has to be instance of string"
			}
		}
	},

	"required" : 
	[
		"space_id",
		"layers"
	]
}