export interface VettingFeedback { /** Detailed description of the feedback. */ description: string; /** Human-readable name of the feedback item. */ displayName: string; /** Fields affected by this feedback item. */ fields: string[]; /** Feedback item identifier. */ id: string; }