jira.js
    Preparing search index...

    Variable WorkflowDocumentStatusDTOSchemaConst

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

    The statuses stored for the specified version.