The result of a JQL search.

interface SearchResults {
    expand?: string;
    issues?: IssueBean[];
    maxResults?: number;
    names?: {
        [key: string]: string;
    };
    schema?: {
        [key: string]: JsonTypeBean;
    };
    startAt?: number;
    total?: number;
    warningMessages?: string[];
}

Properties

expand?: string

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

issues?: IssueBean[]

The list of issues found by the search.

maxResults?: number

The maximum number of results that could be on the page.

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

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

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

The schema describing the field types in the search results.

Type declaration

startAt?: number

The index of the first item returned on the page.

total?: number

The number of results on the page.

warningMessages?: string[]

Any warnings related to the JQL query.