An issue with a listings item.

Issue

interface Issue {
    attributeName?: string;
    code: string;
    message: string;
    severity: IssueSeverityEnum;
}

Properties

attributeName?: string

Name of the attribute associated with the issue, if applicable.

Issue

code: string

An issue code that identifies the type of issue.

Issue

message: string

A message that describes the issue.

Issue

The severity of the issue.

Issue