Skip to content

Commit

Permalink
feat: DataQualityDimension is now part of the DataQualityDimensionRes…
Browse files Browse the repository at this point in the history
…ult message

PiperOrigin-RevId: 571976684
  • Loading branch information
Google APIs authored and Copybara-Service committed Oct 9, 2023
1 parent 8217d10 commit 38d8c5d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions google/cloud/dataplex/v1/data_quality.proto
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,23 @@ message DataQualityRuleResult {
// DataQualityDimensionResult provides a more detailed, per-dimension view of
// the results.
message DataQualityDimensionResult {
// Output only. The dimension config specified in the DataQualitySpec, as is.
DataQualityDimension dimension = 1
[(google.api.field_behavior) = OUTPUT_ONLY];

// Whether the dimension passed or failed.
bool passed = 3;
}

// A dimension captures data quality intent about a defined subset of the rules
// specified.
message DataQualityDimension {
// The dimension name a rule belongs to. Supported dimensions are
// ["COMPLETENESS", "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS",
// "INTEGRITY"]
string name = 1;
}

// A rule captures data quality intent about a data source.
message DataQualityRule {
// Evaluates whether each column value lies between a specified range.
Expand Down

0 comments on commit 38d8c5d

Please sign in to comment.