Type Alias PublicApiError

Standard error response object with code, title, and details.

type PublicApiError = {
    code: string;
    detail?: string;
    meta?: unknown;
    title: string;
}
Index
code: string

Unique DCaaS error code (for example, DCAAS-2001).

detail?: string

Detailed explanation of the error and possible remediation steps.

meta?: unknown

Additional context or debugging information related to the error.

title: string

Short human-readable error title.