{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GeneralErrorWithErrors", "title": "Error Response", "required": [ "status", "title", "type", "errors" ], "type": "object", "properties": { "status": { "type": "integer", "description": "The HTTP status code." }, "title": { "type": "string", "description": "The error title describes the particular error." }, "type": { "type": "string" }, "errors": { "title": "Detailed Errors", "type": "object", "properties": {}, "additionalProperties": true } } }