export interface ValidationError {
field: string;
message: string;
source: {
type: 'TOUR' | 'PATIENT';
id: string;
};
}