DataIssueDetail

  • The DataIssue object provides details on a data issue in a listing, including its type, severity, and whether it's self-resolving.

  • DataIssueSeverity categorizes the impact of a data issue, ranging from informational to errors that prevent listing eligibility.

  • A dataIssueType enum specifies the kind of data issue encountered, while isSelfResolving indicates if the issue is expected to resolve automatically.

  • Listings with ERROR severity will be ineligible for serving, while WARNING severity may negatively affect content display.

Details on a data issue in the listing.

JSON representation
{
  "dataIssueType": enum (FeedDataIssue),
  "dataIssueSeverity": enum (DataIssueSeverity),
  "isSelfResolving": boolean
}
Fields
dataIssueType

enum (FeedDataIssue)

The type of the data issue.

dataIssueSeverity

enum (DataIssueSeverity)

The severity of the data issue.

isSelfResolving

boolean

Whether or not the issue is self-resolving. If true, the issue is expected to resolve itself. If false or not set, action is needed to resolve the issue. Refer to documentation on the data issue’s type for further information.

DataIssueSeverity

Enumerates the severity of the data issue.

Enums
DATA_ISSUE_SEVERITY_UNSPECIFIED The severity of the issue is unknown.
ERROR The data issue will make the listing ineligible for serving.
WARNING The listing will still be eligible for serving, but the data issue may have an adverse effect on the content shown.
INFO The data issue is for informational purposes.