Contentful Personalization & Analytics
    Preparing search index...

    Variable BatchExperienceResponseConst

    BatchExperienceResponse: ZodMiniObject<
        {
            data: ZodMiniObject<
                {
                    profiles: ZodMiniOptional<
                        ZodMiniArray<
                            ZodMiniObject<
                                {
                                    audiences: ZodMiniArray<ZodMiniString<string>>;
                                    id: ZodMiniString<string>;
                                    location: ZodMiniObject<
                                        {
                                            city: ZodMiniOptional<(...)>;
                                            continent: ZodMiniOptional<(...)>;
                                            coordinates: ZodMiniOptional<(...)>;
                                            country: ZodMiniOptional<(...)>;
                                            countryCode: ZodMiniOptional<(...)>;
                                            postalCode: ZodMiniOptional<(...)>;
                                            region: ZodMiniOptional<(...)>;
                                            regionCode: ZodMiniOptional<(...)>;
                                            timezone: ZodMiniOptional<(...)>;
                                        },
                                        $strip,
                                    >;
                                    random: ZodMiniNumber<number>;
                                    session: ZodMiniObject<
                                        {
                                            activeSessionLength: ZodMiniNumber<(...)>;
                                            averageSessionLength: ZodMiniNumber<(...)>;
                                            count: ZodMiniNumber<(...)>;
                                            id: ZodMiniString<(...)>;
                                            isReturningVisitor: ZodMiniBoolean<(...)>;
                                            landingPage: ZodMiniObject<(...), (...)>;
                                        },
                                        $strip,
                                    >;
                                    stableId: ZodMiniString<string>;
                                    traits: ZodMiniRecord<ZodMiniString<string>, ZodMiniJSONSchema>;
                                },
                                $strip,
                            >,
                        >,
                    >;
                },
                $strip,
            >;
            error: ZodMiniNullable<ZodMiniBoolean<boolean>>;
            message: ZodMiniString<string>;
        },
        $strip,
    > = ...

    Zod schema describing a batch experience response from the Experience API.

    Extends ResponseEnvelope with BatchExperienceData as the data payload.