Error response from the Pulse service
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PulseError", "title": "PulseError", "type": "object", "description": "Error response from the Pulse service", "properties": { "code": { "type": "string", "description": "Machine-readable error code" }, "message": { "type": "string", "description": "Human-readable error description" }, "meta": { "type": "object", "description": "Additional error context", "additionalProperties": true } }, "required": [ "code", "message" ] }