export interface DocAiErrorDetail { /** Where the error occurred, e.g. 'body.items[3].tags' or 'path.thing-id'. */ location?: string | undefined; /** Error message text. */ message?: string | undefined; /** The value at the given location. */ value?: unknown | undefined; }