{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "ErrorResponse", "type": "object", "additionalProperties": false, "properties": { "errors": { "type": [ "array", "null" ], "items": { "$ref": "#/definitions/Error" } } }, "definitions": { "Error": { "type": "object", "additionalProperties": false, "properties": { "id": { "type": "string", "format": "guid" }, "error-result": { "type": [ "null", "string" ] }, "error-reason": { "type": [ "null", "string" ] }, "error-solution": { "type": [ "null", "string" ] }, "error-help": { "type": [ "null", "string" ] }, "error-code": { "type": "integer", "format": "int32" } } } } }