openpaul
    Preparing search index...

    Variable MilestoneSchemaConst

    MilestoneSchema: ZodObject<
        {
            completedAt: ZodNullable<ZodString>;
            createdAt: ZodString;
            name: ZodString;
            phases: ZodArray<ZodNumber, "many">;
            scope: ZodString;
            startedAt: ZodNullable<ZodString>;
            status: ZodEnum<["planned", "in-progress", "completed"]>;
            theme: ZodNullable<ZodString>;
        },
        "strip",
        ZodTypeAny,
        {
            completedAt: string
            | null;
            createdAt: string;
            name: string;
            phases: number[];
            scope: string;
            startedAt: string | null;
            status: "in-progress" | "completed" | "planned";
            theme: string | null;
        },
        {
            completedAt: string
            | null;
            createdAt: string;
            name: string;
            phases: number[];
            scope: string;
            startedAt: string | null;
            status: "in-progress" | "completed" | "planned";
            theme: string | null;
        },
    > = ...

    Zod schema for Milestone validation