{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "SpaceInfo",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "Version v1, the region meta data structure",
	"properties" : {
		"id" : {
			"type" : "string",
			"description" : "Space Id is consistent and unique for each space"
		},

		"version" : {
			"type" : "string",
			"description" : " the current version of the space data "
		},

		"layer" : {
			"$ref" : "/resources/schema/data/api/denali/DataLayer.json",
			"description" : " the space Id ,unique and consitent "
		}
	},

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