import type { FieldExtensionType } from '../field';

export type Field = {
  id: string;
  apiId: string;
  description: string | null;
  displayName: string;
  isList: boolean;
  isLocalized: boolean;
  isRequired: boolean;
  isUnique: boolean;
  type: keyof typeof FieldExtensionType;
};
