jira.js
    Preparing search index...

    Variable JiraStatusSchemaConst

    JiraStatusSchema: ZodObject<
        {
            description: ZodOptional<ZodString>;
            id: ZodOptional<ZodString>;
            name: ZodOptional<ZodString>;
            scope: ZodOptional<
                ZodObject<
                    {
                        project: ZodOptional<ZodObject<{ id: ZodString }, $loose>>;
                        type: ZodCustom<
                            string & {}
                            | "PROJECT"
                            | "GLOBAL",
                            string & {} | "PROJECT" | "GLOBAL",
                        >;
                    },
                    $loose,
                >,
            >;
            statusCategory: ZodOptional<
                ZodCustom<
                    string & {}
                    | "TODO"
                    | "IN_PROGRESS"
                    | "DONE",
                    string & {} | "TODO" | "IN_PROGRESS" | "DONE",
                >,
            >;
        },
        $loose,
    > = ...

    Details of a status.