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