import { SchedulingMode } from '@/types'; import z from 'zod'; export const formSchema = z.object({ scheduling_mode: z.nativeEnum(SchedulingMode) }); export type FormSchema = typeof formSchema;