An issue (error, warning) associated with a pipeline run.

interface Issue {
    category?: string;
    data?: { [key: string]: string };
    message?: string;
    type?: IssueType;
}

Properties

category?: string

The category of the issue.
Example: Code - refers to compilation errors
Example: General - refers to generic errors

data?: { [key: string]: string }

A dictionary containing details about the issue.

message?: string

A description of issue.

type?: IssueType

The type (error, warning) of the issue.