import { CustomFieldCategoryId, UserId, OrganizationId } from 'teambition-types'; export interface CustomFieldCategorySchema { _id: CustomFieldCategoryId; _creatorId: UserId; _organizationId: OrganizationId; created: string; isDeleted: boolean; name: string; updated: string; }