{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"additionalProperties" : false,
	"description" : "Version v1, the info for single incremental update package",
	"properties" : {
		"space_info" : {
			"$ref" : "/resources/schema/data/api/denali/SpaceInfo.json",
			"description" : " the Space manifest info details "
		},

		"files" : {
			"type" : "array",
			"items" : {
				"$ref" : "/resources/schema/data/api/denali/FileInfo.json",
				"description" : "Every element of the array is of type FileInfo"
			},

			"description" : "File(s) bundled together for the changeSet of the space & layer defined by space_info.  Missing array means there is no changeSet available"
		},

		"free_space_estimate_in_mb" : {
			"type" : "integer",
			"description" : "Estimate of free space required on the client side to process this changeSet.  This parameter is optional and may not exist for every changeSet."
		}
	},

	"required" : 
	[
		"space_info"
	],

	"title" : "ChangeSetManifest",
	"type" : "object"
}