{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "CheckForUpdateResponse",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "Version v2, Response for checkForUpdate",
	"properties" : {
		"change_sets" : {
			"type" : "array",
			"items" : {
				"$ref" : "/resources/schema/data/api/v2/ChangeSetManifest.json",
				"description" : "ChangeSet Manifests for the available changes.  If this array is empty, it means that there is no update available for the requested layer/space/version combo in the respective request."
			}
		},

		"status" : {
			"$ref" : "/resources/schema/services/v2/ServiceStatus.json"
		}
	},

	"required" : 
	[
		"status"
	]
}