© 2026 Hedgehog Software, LLC
const ValueUnitSchema: toZod<ValueUnitType> = z.object({ id: z.string(), name: z.string(), });
const ValueUnitSchema: toZod<ValueUnitType>
const valueUnitSchemaFull: z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, ValueUnit, ValueUnit>
const TestSchema: toZod<ReturnType> = ?
const TestSchema: z.ZodOptional<z.ZodArray<z.ZodObject<{ product: z.ZodNullable<z.ZodObject<{ id: z.ZodString; name: z.ZodNullable<z.ZodString>;
const TestSchema: toZod<ReturnTypeTest> = z.optional(z.array(z.object({ (properties go here but they're not popping up as a suggestion) })))