import { z } from "zod/v4"; export const PaymentTermRefSchema = z.object({ id: z.uuid(), description: z.string(), }); export type PaymentTermRefDTO = z.infer;