Variable JLandMapCreationSchemaConst
JLandMapCreationSchema: ZodObject<
{
description: ZodOptionalType<
ZodType<
string
| null
| undefined,
ZodTypeDef,
string | null | undefined,
>,
>;
idSpot: ZodOptionalType<
ZodType<string[] | undefined, ZodTypeDef, string[] | undefined>,
>;
publishTo: ZodOptionalType<
ZodType<string | undefined, ZodTypeDef, string | undefined>,
>;
title: ZodOptionalType<
ZodType<string | undefined, ZodTypeDef, string | undefined>,
>;
} & { jlandMapAggregated: ZodString; type: ZodLiteral<"jlandmap"> },
"strip",
ZodTypeAny,
{
description?: string | null;
idSpot?: string[];
jlandMapAggregated: string;
publishTo?: string;
title?: string;
type: "jlandmap";
},
{
description?: string
| null;
idSpot?: string[];
jlandMapAggregated: string;
publishTo?: string;
title?: string;
type: "jlandmap";
},
> = ...