Variable geometriesIdSchemaConst
geometriesIdSchema: z.ZodDiscriminatedUnion<
[
z.ZodObject<
{ id: z.ZodString; kind: z.ZodLiteral<"place"> },
z.core.$strip,
>,
z.ZodObject<
{ id: z.ZodString; kind: z.ZodLiteral<"places"> },
z.core.$strip,
>,
z.ZodObject<
{ id: z.ZodString; kind: z.ZodLiteral<"ranges"> },
z.core.$strip,
>,
z.ZodObject<
{ id: z.ZodString; kind: z.ZodLiteral<"customGeometries"> },
z.core.$strip,
>,
],
"kind",
>
Tagged geometries id. The Zod schema is exposed so tools can plug it straight into their input shape (
z.array(geometriesIdSchema).min(1)) — no string parsing on the way in.