{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "ChangeSetSpaceInfo",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "Version v2, the region meta data structure",
	"properties" : {
		"id" : {
			"type" : "string",
			"description" : "Space Id is consistent and unique for each spatial boundary.  It is not standard across the layers, and individual layers own their owwn spaceIds.",
			"minLength" : 3
		},

		"version" : {
			"type" : "string",
			"description" : "Version of the space/layer data ",
			"minLength" : 24
		},

		"layer" : {
			"$ref" : "/resources/schema/data/api/v2/ChangeSetLayer.json",
			"description" : "Data Layer"
		}
	},

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