{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/EventStreamCloudEventErrorDetail", "title": "EventStreamCloudEventErrorDetail", "type": "object", "description": "Error details.", "additionalProperties": false, "required": [ "code", "message" ], "properties": { "code": { "$ref": "#/components/schemas/EventStreamCloudEventErrorCodeEnum" }, "message": { "type": "string", "description": "Human-readable error message." }, "offset": { "type": "string", "description": "The cursor at the time of the error (when available). Can be used to resume from this position." } } }