OBJECT

DataQualityWarning

A data quality warning associated with a content item

link GraphQL Schema definition

  • type DataQualityWarning implements Label {
  • # Unique identifier used by the metadata API. Not the same as the numeric ID used
  • # on server
  • id: ID!
  • # User who last updated this data quality warning
  • author: TableauUser
  • # Name of the user who last updated this data quality warning
  • authorDisplayName: String
  • # Vizportal ID of this data quality warning, for use in client-to-server
  • # communications
  • vizportalId: String!
  • # Locally unique identifier used for the REST API on the Tableau Server
  • luid: String!
  • # True if the data quality warning is active
  • isActive: Boolean!
  • # Synonymous with isElevated
  • isSevere: Boolean! @deprecated( reason: "Use 'isElevated'" )
  • # True if the data quality warning is elevated
  • isElevated: Boolean!
  • # Synonymous with value
  • warningType: String! @deprecated( reason: "Use 'value'" )
  • # Value of the label
  • value: String!
  • # Category of the label
  • category: String!
  • # Message of the data quality warning
  • message: String
  • # Time the data quality warning was created
  • createdAt: DateTime!
  • # Time the data quality warning was last updated
  • updatedAt: DateTime!
  • # The asset that contains the data quality warning
  • asset: CanHaveLabels
  • }

link Require by