{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"additionalProperties" : false,
	"description" : "API Path: /v1/changeset/update\nVersion v1, the request structure to check updates status",
	"properties" : {
		"context" : {
			"$ref" : "/resources/schema/services/v1/Context.json",
			"description" : " the service context ,"
		},

		"spaces" : {
			"type" : "array",
			"items" : {
				"$ref" : "/resources/schema/data/api/denali/SpaceInfo.json",
				"description" : "the spaces meta data"
			}
		},

		"home_area" : {
			"type" : "array",
			"items" : {
				"$ref" : "/resources/schema/common/v1/CountryState.json",
				"descriptiopn" : "Each Element has to be instance of CountryState Enum"
			},

			"descriptiopn" : "Optional home area to filter the response on."
		}
	},

	"required" : 
	[
		"context",
		"spaces"
	],

	"title" : "CheckForUpdateRequest",
	"type" : "object"
}