Contentful Personalization & Analytics
    Preparing search index...
    EntrySys: 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,
    > = ...

    Zod schema describing the sys block for a Contentful entry.

    This mirrors the structure of Entry['sys'] from the Contentful SDK with a subset of fields used by this library.