Member Junction
    Preparing search index...

    Variable MJExperimentSessionSchemaConst

    MJExperimentSessionSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            AgentRun: ZodNullable<ZodString>;
            AgentRunID: ZodNullable<ZodString>;
            Budget: ZodNullable<ZodString>;
            Experiment: ZodString;
            ExperimentID: ZodString;
            Goal: ZodNullable<ZodString>;
            ID: ZodString;
            Leaderboard: ZodNullable<ZodString>;
            Name: ZodString;
            PlanSpec: ZodNullable<ZodString>;
            Status: ZodUnion<
                [
                    ZodLiteral<"AwaitingApproval">,
                    ZodLiteral<"Cancelled">,
                    ZodLiteral<"Completed">,
                    ZodLiteral<"Paused">,
                    ZodLiteral<"Planning">,
                    ZodLiteral<"Running">,
                ],
            >;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            AgentRun?: string;
            AgentRunID?: string;
            Budget?: string;
            Experiment?: string;
            ExperimentID?: string;
            Goal?: string;
            ID?: string;
            Leaderboard?: string;
            Name?: string;
            PlanSpec?: string;
            Status?: | "Cancelled"
            | "Completed"
            | "Running"
            | "Paused"
            | "AwaitingApproval"
            | "Planning";
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            AgentRun?: string;
            AgentRunID?: string;
            Budget?: string;
            Experiment?: string;
            ExperimentID?: string;
            Goal?: string;
            ID?: string;
            Leaderboard?: string;
            Name?: string;
            PlanSpec?: string;
            Status?: | "Cancelled"
            | "Completed"
            | "Running"
            | "Paused"
            | "AwaitingApproval"
            | "Planning";
        },
    > = ...

    zod schema definition for the entity MJ: Experiment Sessions