Contentful Personalization & Analytics
    Preparing search index...

    Variable BatchExperienceDataConst

    BatchExperienceData: ZodMiniObject<
        {
            profiles: ZodMiniOptional<
                ZodMiniArray<
                    ZodMiniObject<
                        {
                            audiences: ZodMiniArray<ZodMiniString<string>>;
                            id: ZodMiniString<string>;
                            location: ZodMiniObject<
                                {
                                    city: ZodMiniOptional<ZodMiniString<string>>;
                                    continent: ZodMiniOptional<ZodMiniString<string>>;
                                    coordinates: ZodMiniOptional<
                                        ZodMiniObject<{ latitude: ...; longitude: ... }, $strip>,
                                    >;
                                    country: ZodMiniOptional<ZodMiniString<string>>;
                                    countryCode: ZodMiniOptional<ZodMiniString<string>>;
                                    postalCode: ZodMiniOptional<ZodMiniString<string>>;
                                    region: ZodMiniOptional<ZodMiniString<string>>;
                                    regionCode: ZodMiniOptional<ZodMiniString<string>>;
                                    timezone: ZodMiniOptional<ZodMiniString<string>>;
                                },
                                $strip,
                            >;
                            random: ZodMiniNumber<number>;
                            session: ZodMiniObject<
                                {
                                    activeSessionLength: ZodMiniNumber<number>;
                                    averageSessionLength: ZodMiniNumber<number>;
                                    count: ZodMiniNumber<number>;
                                    id: ZodMiniString<string>;
                                    isReturningVisitor: ZodMiniBoolean<boolean>;
                                    landingPage: ZodMiniObject<
                                        {
                                            path: ZodMiniString<(...)>;
                                            query: ZodMiniRecord<(...), (...)>;
                                            referrer: ZodMiniString<(...)>;
                                            search: ZodMiniString<(...)>;
                                            title: ZodMiniOptional<(...)>;
                                            url: ZodMiniString<(...)>;
                                        },
                                        $catchall<ZodMiniJSONSchema>,
                                    >;
                                },
                                $strip,
                            >;
                            stableId: ZodMiniString<string>;
                            traits: ZodMiniRecord<ZodMiniString<string>, ZodMiniJSONSchema>;
                        },
                        $strip,
                    >,
                >,
            >;
        },
        $strip,
    > = ...

    Zod schema describing the data property of a batch experience response.

    A batch request may return zero or more profiles. When no profiles are returned, profiles may be omitted or an empty array.