export type Field = {
    name: string;
    value: string;
    verified_at?: string | null;
    verified?: boolean | false;
};
