{
	"$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"
		},

		"data" : {
			"type" : "array",
			"description" : "List of data objects that match the retrieve request parameters",
			"items" : {
				"$ref" : "/resources/schema/data/api/denali/DataObject.json",
				"description" : "Each element of the list will conform to the instance of DataObject object"
			}
		}
	},

	"required" : 
	[
		"status"
	],

	"title" : "RetrieveResponse",
	"type" : "object"
}