DataProfileFinding

Details about a piece of potentially sensitive information that was detected when the data resource was profiled.

JSON representation
{
  "quote": string,
  "infotype": {
    object (InfoType)
  },
  "quoteInfo": {
    object (QuoteInfo)
  },
  "dataProfileResourceName": string,
  "findingId": string,
  "timestamp": string,
  "location": {
    object (DataProfileFindingLocation)
  },
  "resourceVisibility": enum (ResourceVisibility)
}
Fields
quote

string

The content that was found. Even if the content is not textual, it may be converted to a textual representation here. If the finding exceeds 4096 bytes in length, the quote may be omitted.

infotype

object (InfoType)

The type of content that might have been found.

quoteInfo

object (QuoteInfo)

Contains data parsed from quotes. Currently supported infoTypes: DATE, DATE_OF_BIRTH, and TIME.

dataProfileResourceName

string

Resource name of the data profile associated with the finding.

findingId

string

A unique identifier for the finding.

timestamp

string (Timestamp format)

Timestamp when the finding was detected.

A timestamp in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits. Examples: "2014-10-02T15:01:23Z" and "2014-10-02T15:01:23.045123456Z".

location

object (DataProfileFindingLocation)

Where the content was found.

resourceVisibility

enum (ResourceVisibility)

How broadly a resource has been shared.

DataProfileFindingLocation

Location of a data profile finding within a resource.

JSON representation
{
  "containerName": string,

  // Union field location_extra_details can be only one of the following:
  "dataProfileFindingRecordLocation": {
    object (DataProfileFindingRecordLocation)
  }
  // End of list of possible types for union field location_extra_details.
}
Fields
containerName

string

Name of the container where the finding is located. The top-level name is the source file name or table name. Names of some common storage containers are formatted as follows:

  • BigQuery tables: {projectId}:{datasetId}.{tableId}
  • Cloud Storage files: gs://{bucket}/{path}
Union field location_extra_details. Additional location details that may be provided for some types of profiles. At this time, only findings for table data profiles include such details. location_extra_details can be only one of the following:
dataProfileFindingRecordLocation

object (DataProfileFindingRecordLocation)

Location of a finding within a resource that produces a table data profile.

DataProfileFindingRecordLocation

Location of a finding within a resource that produces a table data profile.

JSON representation
{
  "field": {
    object (FieldId)
  }
}
Fields
field

object (FieldId)

Field ID of the column containing the finding.