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

11 lines
172 B
TypeScript

import { z } from "zod"
export const relationshipsSchema = z.object({
links: z.array(
z.object({
type: z.string(),
url: z.string().url(),
})
),
})