Contentful Personalization & Analytics
    Preparing search index...
    CtflEntry: ZodMiniObject<
        {
            fields: ZodMiniObject<{}, $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 generic Contentful entry.

    This model is intentionally loose: fields is any JSON-compliant object and metadata is modeled as a catch-all object that must contain an array of TagLink tags.