{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"title" : "CheckForBatchUpdateRequest",
	"type" : "object",
	"description" : "Version v1 - Check For Batch Update API Request",
	"additionalProperties" : true,
	"api_path" : "/v1/batch_check_for_update",
	"properties" : {
		"managed_areas": {
			"type": "array",
			"items": {
				"$ref": "/resources/schema/adm/v1/ManagedArea.json"
			},
			"minItems": 1,
			"description": "Managed Areas to check for update."
		}
	},

	"required" : 
	[
		"managed_areas"
	]
}