import { z } from "zod" import { systemSchema } from "../schemas/system" export const destinationCityPageSchema = z.object({ destination_city_page: z.object({ title: z.string(), system: systemSchema.merge( z.object({ created_at: z.string(), updated_at: z.string(), }) ), }), trackingProps: z.object({ url: z.string(), }), }) /** REFS */ export const destinationCityPageRefsSchema = z.object({ destination_city_page: z.object({ system: systemSchema, }), })