Represents a Code Insights report attached to a pull request in Bitbucket Data Center.

Reports are created by external tools (CI, static analysis, coverage) and displayed in the pull request overview.

interface BitbucketReport {
    createdDate: number;
    data?: BitbucketReportData[];
    details?: string;
    key: string;
    link?: string;
    logoUrl?: string;
    reporter?: string;
    result?: ReportResult;
    title: string;
    updatedDate: number;
}

Properties

createdDate: number

Structured data points displayed in the report

details?: string
key: string

Unique key identifying the report

link?: string

Link to the full external report

logoUrl?: string

URL of the logo shown in the Bitbucket UI

reporter?: string

Name of the tool or service that created the report

result?: ReportResult

Overall result of the report

title: string
updatedDate: number