jira.js
    Preparing search index...

    Function getAllIssueTypeSchemes

    • Returns a list of all issue type schemes visible to the user. All issue types associated with the scheme will only be returned if an additional query parameter is provided: expand=schemes.issueTypes. Similarly, the default issue type associated with the scheme (if one exists) will only be returned if an additional query parameter is provided: expand=schemes.defaultIssueType. Note that both query parameters can be used together: expand=schemes.issueTypes,schemes.defaultIssueType.

      Parameters

      Returns Promise<
          {
              schemes?: {
                  defaultIssueType?: {
                      avatarId?: number;
                      description?: string;
                      iconUrl?: string;
                      id?: string;
                      name?: string;
                      self?: string;
                      subtask?: boolean;
                      [key: string]: unknown;
                  };
                  description?: string;
                  expand?: string;
                  id?: string;
                  issueTypes?: {
                      avatarId?: number;
                      description?: string;
                      iconUrl?: string;
                      id?: string;
                      name?: string;
                      self?: string;
                      subtask?: boolean;
                      [key: string]: unknown;
                  }[];
                  name?: string;
                  self?: string;
                  [key: string]: unknown;
              }[];
              [key: string]: unknown;
          },
      >