import * as z from 'zod'; export const PatientStatusSchema = z.enum(['ACTIVE', 'INACTIVE', 'UNKNOWN']) export type PatientStatus = z.infer;