import * as z from 'zod'; import type { Prisma } from '../../../generated/prisma'; import { JsonNullValueInputSchema } from '../enums/JsonNullValueInput.schema' import { JsonValueSchema as jsonSchema } from '../../helpers/json-helpers'; const makeSchema = () => z.object({ id: z.number().int().optional(), data: z.union([JsonNullValueInputSchema, jsonSchema]) }).strict(); export const ProcedureTimeslotUncheckedCreateWithoutUserInputObjectSchema: z.ZodType = makeSchema() as unknown as z.ZodType; export const ProcedureTimeslotUncheckedCreateWithoutUserInputObjectZodSchema = makeSchema();