export interface ValidationErrorDetails { /** Description of the validation error. */ description: string; /** Optional example of valid input for the field. */ example?: string; /** The field that failed validation. */ field: string; }