{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"additionalProperties" : false,
	"description" : "Version v1, the retriveResponse data structure",
	"properties" : {
		"status" : {
			"$ref" : "/resources/schema/services/v1/ServiceStatus.json",
			"description" : "API response status"
		},

		"upload_location_uris" : {
			"type" : "array",
			"items" : {
				"$ref" : "/resources/schema/data/api/denali/FileInfo.json",
				"description" : "Every element of this array represents a FileInfo Object"
			},

			"description" : "This array represents the URI list of all the partitions of all files uploaded to storage location URI.  The number of elements of this array should match the value provided in num_of_parts in the respective request"
		}
	},

	"required" : 
	[
		"status"
	],

	"title" : "GetUploadPathsResponse",
	"type" : "object"
}