9 lines
189 B
TypeScript
9 lines
189 B
TypeScript
import { z } from "zod"
|
|
|
|
export const contactInformationSchema = z.object({
|
|
email: z.string(),
|
|
faxNumber: z.string().optional(),
|
|
phoneNumber: z.string(),
|
|
websiteUrl: z.string(),
|
|
})
|