export interface Problem { type: string; title: string; status: number; detail: string; correlationId?: string; diagrams?: string[]; possibleCause?: string; violations?: { [key: string]: { detail: string; }[]; }; }