jira.js
    Preparing search index...

    Variable StatusCreateSchemaConst

    StatusCreateSchema: ZodObject<
        {
            description: ZodOptional<ZodString>;
            name: ZodString;
            statusCategory: ZodCustom<
                string & {}
                | "TODO"
                | "IN_PROGRESS"
                | "DONE",
                string & {} | "TODO" | "IN_PROGRESS" | "DONE",
            >;
        },
        $loose,
    > = ...

    Details of the status being created.