Files
web/server/routers/hotels/schemas/hotel/contactInformation.ts
2025-01-30 13:50:02 +01:00

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(),
})