@mharj/openweathermap
    Preparing search index...

    Variable weatherDataV2SchemaConst

    weatherDataV2Schema: z.ZodObject<
        {
            base: z.ZodString;
            clouds: z.ZodObject<{ all: z.ZodNumber }, z.core.$strip>;
            cod: z.ZodNumber;
            coord: z.ZodObject<{ lat: z.ZodNumber; lon: z.ZodNumber }, z.core.$strip>;
            dt: z.ZodNumber;
            id: z.ZodNumber;
            main: z.ZodObject<
                {
                    grnd_level: z.ZodOptional<z.ZodNumber>;
                    humidity: z.ZodNumber;
                    pressure: z.ZodNumber;
                    sea_level: z.ZodOptional<z.ZodNumber>;
                    temp: z.ZodNumber;
                    temp_max: z.ZodNumber;
                    temp_min: z.ZodNumber;
                },
                z.core.$strip,
            >;
            name: z.ZodString;
            rain: z.ZodOptional<
                z.ZodObject<
                    {
                        "1h": z.ZodOptional<z.ZodNumber>;
                        "3h": z.ZodOptional<z.ZodNumber>;
                    },
                    z.core.$strip,
                >,
            >;
            snow: z.ZodOptional<
                z.ZodObject<
                    {
                        "1h": z.ZodOptional<z.ZodNumber>;
                        "3h": z.ZodOptional<z.ZodNumber>;
                    },
                    z.core.$strip,
                >,
            >;
            sys: z.ZodObject<
                {
                    country: z.ZodString;
                    id: z.ZodOptional<z.ZodNumber>;
                    message: z.ZodOptional<z.ZodNumber>;
                    sunrise: z.ZodNumber;
                    sunset: z.ZodNumber;
                    type: z.ZodOptional<z.ZodNumber>;
                },
                z.core.$strip,
            >;
            timezone: z.ZodNumber;
            visibility: z.ZodNumber;
            weather: z.ZodArray<
                z.ZodObject<
                    {
                        description: z.ZodString;
                        icon: z.ZodUnion<
                            [
                                z.ZodEnum<
                                    Record<
                                        | "01d"
                                        | "02d"
                                        | "03d"
                                        | "04d"
                                        | "09d"
                                        | "10d"
                                        | "11d"
                                        | "13d"
                                        | "50d",
                                        | "01d"
                                        | "02d"
                                        | "03d"
                                        | "04d"
                                        | "09d"
                                        | "10d"
                                        | "11d"
                                        | "13d"
                                        | "50d",
                                    >,
                                >,
                                z.ZodEnum<
                                    Record<
                                        | "01n"
                                        | "02n"
                                        | "03n"
                                        | "04n"
                                        | "09n"
                                        | "10n"
                                        | "11n"
                                        | "13n"
                                        | "50n",
                                        | "01n"
                                        | "02n"
                                        | "03n"
                                        | "04n"
                                        | "09n"
                                        | "10n"
                                        | "11n"
                                        | "13n"
                                        | "50n",
                                    >,
                                >,
                            ],
                        >;
                        id: z.ZodType<
                            | 200
                            | 201
                            | 202
                            | 210
                            | 211
                            | 212
                            | 221
                            | 230
                            | 231
                            | 232
                            | 300
                            | 301
                            | 302
                            | 310
                            | 311
                            | 312
                            | 313
                            | 314
                            | 321
                            | 500
                            | 501
                            | 502
                            | 503
                            | 504
                            | 511
                            | 520
                            | 521
                            | 522
                            | 531
                            | 600
                            | 601
                            | 602
                            | 611
                            | 612
                            | 613
                            | 615
                            | 616
                            | 620
                            | 621
                            | 622
                            | 701
                            | 711
                            | 721
                            | 731
                            | 741
                            | 751
                            | 761
                            | 762
                            | 771
                            | 781
                            | 800
                            | 801
                            | 802
                            | 803
                            | 804,
                            unknown,
                            z.core.$ZodTypeInternals<
                                | 200
                                | 201
                                | 202
                                | 210
                                | 211
                                | 212
                                | 221
                                | 230
                                | 231
                                | 232
                                | 300
                                | 301
                                | 302
                                | 310
                                | 311
                                | 312
                                | 313
                                | 314
                                | 321
                                | 500
                                | 501
                                | 502
                                | 503
                                | 504
                                | 511
                                | 520
                                | 521
                                | 522
                                | 531
                                | 600
                                | 601
                                | 602
                                | 611
                                | 612
                                | 613
                                | 615
                                | 616
                                | 620
                                | 621
                                | 622
                                | 701
                                | 711
                                | 721
                                | 731
                                | 741
                                | 751
                                | 761
                                | 762
                                | 771
                                | 781
                                | 800
                                | 801
                                | 802
                                | 803
                                | 804,
                                unknown,
                            >,
                        >;
                        main: z.ZodString;
                    },
                    z.core.$strip,
                >,
            >;
            wind: z.ZodObject<{ deg: z.ZodNumber; speed: z.ZodNumber }, z.core.$strip>;
        },
        z.core.$strip,
    > = ...