import { z } from "zod" export const locationSchema = z.object({ distanceToCentre: z.number(), latitude: z.number(), longitude: z.number(), })