import { z } from "zod" export const contactInformationSchema = z.object({ email: z.string(), faxNumber: z.string().optional(), phoneNumber: z.string(), websiteUrl: z.string(), })