Member Junction
    Preparing search index...

    Variable MJAIArchitectureSchemaConst

    MJAIArchitectureSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            Category: ZodUnion<
                [
                    ZodLiteral<"Core">,
                    ZodLiteral<"Hybrid">,
                    ZodLiteral<"Optimization">,
                    ZodLiteral<"Specialized">,
                ],
            >;
            Description: ZodNullable<ZodString>;
            ID: ZodString;
            KeyPaper: ZodNullable<ZodString>;
            Name: ZodString;
            ParentArchitecture: ZodNullable<ZodString>;
            ParentArchitectureID: ZodNullable<ZodString>;
            RootParentArchitectureID: ZodNullable<ZodString>;
            WikipediaURL: ZodNullable<ZodString>;
            YearIntroduced: ZodNullable<ZodNumber>;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Category?: "Hybrid"
            | "Core"
            | "Optimization"
            | "Specialized";
            Description?: string;
            ID?: string;
            KeyPaper?: string;
            Name?: string;
            ParentArchitecture?: string;
            ParentArchitectureID?: string;
            RootParentArchitectureID?: string;
            WikipediaURL?: string;
            YearIntroduced?: number;
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            Category?: "Hybrid"
            | "Core"
            | "Optimization"
            | "Specialized";
            Description?: string;
            ID?: string;
            KeyPaper?: string;
            Name?: string;
            ParentArchitecture?: string;
            ParentArchitectureID?: string;
            RootParentArchitectureID?: string;
            WikipediaURL?: string;
            YearIntroduced?: number;
        },
    > = ...

    zod schema definition for the entity MJ: AI Architectures