{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "CheckForUpdateResponse",
	"type" : "object",
	"additionalProperties" : false,
	"description" : "Version v1 - Check For Update API Response",
	"properties" : {
		"status" : {
			"$ref" : "/resources/schema/services/v2/ServiceStatus.json"
		},

		"release_bundle" : {
			"$ref" : "/resources/schema/delta/v1/ReleaseBundle.json",
			"description" : "If this is null, it means that there is no update available for the requested layer/space/transaction_tag combo in the respective request."
		},
		
		"truedelta_access_token" : {
			"type" : "string",
			"description" : "AccessToken to use with for update API.",
			"minLength" : 1			
		}
		
	},

	"required" : 
	[
		"status"
	]
}