Interface JobError

Server-side error envelope for a failed job. Mirrors the OGC API Processes "exception" shape; adapters for other protocols translate onto this surface so callers can branch on code without protocol knowledge.

interface JobError {
    code: string;
    details?: unknown;
    message: string;
}

Properties

Properties

code: string

Stable machine code (e.g. "InvalidParameterValue").

details?: unknown

Optional details payload as returned by the server.

message: string

Human-readable explanation.