{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ErrorResponse", "description": "JSON Schema for ErrorResponse", "type": "object", "properties": { "errorCode": { "type": "string" }, "errors": { "type": "array", "items": { "$ref": "#/components/schemas/RESTAPIError" } }, "userMessage": { "type": "string" } } }