{
	"$schema" : "http://json-schema.org/draft-04/schema#",
	"additionalProperties" : false,
	"description" : "Version v1, the update response ,success or failed",
	"properties" : {
		"status" : {
			"$ref" : "/resources/schema/services/v1/ServiceStatus.json",
			"description" : "Status Returned by the service"
		},

		"operation_response" : {
			"type" : "array",
			"description" : "List of data objects operation peformed on",
			"items" : {
				"$ref" : "/resources/schema/data/api/v1/DataObject.json",
				"description" : "Each element of list has to be DataObject instance"
			}
		}
	},

	"required" : 
	[
		"status"
	],

	"title" : "UpdateResponse",
	"type" : "object"
}