Variable FilterConditionSchemaConst

FilterConditionSchema: ZodObject<{
    field: ZodString;
    condition: ZodUnion<readonly [ZodObject<{
        type: ZodLiteral<"Match">;
        value: ZodUnion<readonly [ZodString, ZodNumber, ZodBoolean]>;
    }, $strip>, ZodObject<{
        type: ZodLiteral<"Range">;
        value: ZodObject<{
            gte: ZodOptional<ZodNumber>;
            lte: ZodOptional<ZodNumber>;
            gt: ZodOptional<ZodNumber>;
            lt: ZodOptional<ZodNumber>;
        }, $strip>;
    }, $strip>, ZodObject<{
        type: ZodLiteral<"DatetimeRange">;
        value: ZodObject<{
            gte: ZodOptional<ZodString>;
            lte: ZodOptional<ZodString>;
            gt: ZodOptional<ZodString>;
            lt: ZodOptional<ZodString>;
        }, $strip>;
    }, $strip>, ZodObject<{
        type: ZodLiteral<"GeoRadius">;
        value: ZodObject<{
            lat: ZodNumber;
            lon: ZodNumber;
            radius: ZodNumber;
        }, $strip>;
    }, $strip>]>;
}, $strip> = ...