{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "AreaResponse",
	"type" : "object",
	"additionalProperties" : true,
	"description" : "Version v1 - response object for either Calculate/Retrieve Area Requests ",
	"properties" : {
		"status" : {
			"$ref" : "/resources/schema/adm/v1/ServiceStatus.json"
		},

		"results" : {
			"type" : "array",
			"items" : {
				"$ref" : "/resources/schema/adm/v1/AreaResult.json",
				"description" : "Every element of the array is of type AreaResult"
			},
			
			"description" : "Array of AreaResult if available."
		},

		"callback_token" : {
			"type" : "string",
			"description" : "Token returned in case of async.",
			"minLength" : 1			
		}
	},

	"required" : 
	[
		"status"
	]
}
