The result of a JQL search with issues reconsilation.

interface SearchAndReconcileResults {
    issues?: IssueBean[];
    names?: {
        [key: string]: string;
    };
    nextPageToken?: string;
    schema?: {
        [key: string]: JsonTypeBean;
    };
}

Properties

issues?: IssueBean[]

The list of issues found by the search or reconsiliation.

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 the only page this token will be null. This token will expire in 7 days.

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

The schema describing the field types in the search results.

Type declaration