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

		"release_bundles" : {
			"type" : "array",
			"items" : {
				"$ref" : "/resources/schema/delta/v1/ReleaseBundle.json",
				"description" : "Every element of the array is of type ReleaseBundle sorted in the order of transaction tag from old to the latest. Only the changeset information is returned. ChangesetFile information is not returned."
			},

			"description" : "If this array is empty, 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"
	]
}