{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ErrorResponse", "title": "ErrorResponse", "type": "object", "properties": { "message": { "type": "string", "description": "A human readable description of the error." }, "errors": { "type": "array", "items": { "$ref": "#/components/schemas/ErrorDetail" }, "description": "An array of error details." }, "trackingId": { "type": "string", "description": "A unique identifier to help with debugging." } } }