The result of an issue search in Jira Software APIs.

interface SoftwareIssueResults {
    expand?: string;
    isLast?: boolean;
    issues?: IssueBean[];
    names?: {
        [key: string]: string;
    };
    nextPageToken?: string;
    schema?: {
        [key: string]: JsonTypeBean;
    };
    warningMessages?: string[];
}

Properties

expand?: string

Expand options that include additional search result details in the response.

isLast?: boolean

Indicates whether this is the last page of the paginated response.

issues?: IssueBean[]

The list of issues found by the search.

names?: {
    [key: string]: string;
}

The ID and name of each field in the search results.

nextPageToken?: string

Continuation token to fetch the next page. If this result represents the last or only page, this token will be null.

schema?: {
    [key: string]: JsonTypeBean;
}

The schema describing the field types in the search results.

Type declaration

warningMessages?: string[]

Any warnings related to the JQL query.