Contentful Personalization & Analytics
    Preparing search index...
    PersonalizedEntry: ZodMiniObject<
        {
            fields: ZodMiniObject<
                {
                    nt_experiences: ZodMiniArray<
                        ZodMiniUnion<
                            readonly [
                                ZodMiniObject<
                                    {
                                        sys: ZodMiniObject<
                                            { id: ...; linkType: ...; type: ... },
                                            $strip,
                                        >;
                                    },
                                    $strip,
                                >,
                                ZodMiniObject<
                                    {
                                        fields: ZodMiniObject<
                                            {
                                                nt_audience: ...;
                                                nt_config: ...;
                                                nt_description: ...;
                                                nt_experience_id: ...;
                                                nt_name: ...;
                                                nt_type: ...;
                                                nt_variants: ...;
                                            },
                                            $catchall<(...)>,
                                        >;
                                        metadata: ZodMiniObject<{ tags: ... }, $catchall<(...)>>;
                                        sys: ZodMiniObject<
                                            {
                                                contentType: ...;
                                                createdAt: ...;
                                                environment: ...;
                                                id: ...;
                                                locale: ...;
                                                publishedVersion: ...;
                                                revision: ...;
                                                space: ...;
                                                type: ...;
                                                updatedAt: ...;
                                            },
                                            $strip,
                                        >;
                                    },
                                    $strip,
                                >,
                            ],
                        >,
                    >;
                },
                $catchall<ZodMiniJSONSchema>,
            >;
            metadata: ZodMiniObject<
                {
                    tags: ZodMiniArray<
                        ZodMiniObject<
                            {
                                sys: ZodMiniObject<
                                    {
                                        id: ZodMiniString<string>;
                                        linkType: ZodMiniLiteral<"Tag">;
                                        type: ZodMiniLiteral<"Link">;
                                    },
                                    $strip,
                                >;
                            },
                            $strip,
                        >,
                    >;
                },
                $catchall<ZodMiniJSONSchema>,
            >;
            sys: ZodMiniObject<
                {
                    contentType: ZodMiniObject<
                        {
                            sys: ZodMiniObject<
                                {
                                    id: ZodMiniString<string>;
                                    linkType: ZodMiniLiteral<"ContentType">;
                                    type: ZodMiniLiteral<"Link">;
                                },
                                $strip,
                            >;
                        },
                        $strip,
                    >;
                    createdAt: ZodMiniAny;
                    environment: ZodMiniObject<
                        {
                            sys: ZodMiniObject<
                                {
                                    id: ZodMiniString<string>;
                                    linkType: ZodMiniLiteral<"Environment">;
                                    type: ZodMiniLiteral<"Link">;
                                },
                                $strip,
                            >;
                        },
                        $strip,
                    >;
                    id: ZodMiniString<string>;
                    locale: ZodMiniOptional<ZodMiniString<string>>;
                    publishedVersion: ZodMiniNumber<number>;
                    revision: ZodMiniNumber<number>;
                    space: ZodMiniObject<
                        {
                            sys: ZodMiniObject<
                                {
                                    id: ZodMiniString<string>;
                                    linkType: ZodMiniLiteral<"Space">;
                                    type: ZodMiniLiteral<"Link">;
                                },
                                $strip,
                            >;
                        },
                        $strip,
                    >;
                    type: ZodMiniLiteral<"Entry">;
                    updatedAt: ZodMiniAny;
                },
                $strip,
            >;
        },
        $strip,
    > = ...

    Zod schema describing a Contentful entry that has attached personalizations.

    Extends CtflEntry and adds nt_experiences to the fields object.