jira.js
    Preparing search index...

    Variable CreateStatusesSchemaConst

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