Skip to content

Commit 38d8c5d

Browse files
Google APIscopybara-github
authored andcommitted
feat: DataQualityDimension is now part of the DataQualityDimensionResult message
PiperOrigin-RevId: 571976684
1 parent 8217d10 commit 38d8c5d

1 file changed

Lines changed: 13 additions & 0 deletions

File tree

google/cloud/dataplex/v1/data_quality.proto

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -166,10 +166,23 @@ message DataQualityRuleResult {
166166
// DataQualityDimensionResult provides a more detailed, per-dimension view of
167167
// the results.
168168
message DataQualityDimensionResult {
169+
// Output only. The dimension config specified in the DataQualitySpec, as is.
170+
DataQualityDimension dimension = 1
171+
[(google.api.field_behavior) = OUTPUT_ONLY];
172+
169173
// Whether the dimension passed or failed.
170174
bool passed = 3;
171175
}
172176

177+
// A dimension captures data quality intent about a defined subset of the rules
178+
// specified.
179+
message DataQualityDimension {
180+
// The dimension name a rule belongs to. Supported dimensions are
181+
// ["COMPLETENESS", "ACCURACY", "CONSISTENCY", "VALIDITY", "UNIQUENESS",
182+
// "INTEGRITY"]
183+
string name = 1;
184+
}
185+
173186
// A rule captures data quality intent about a data source.
174187
message DataQualityRule {
175188
// Evaluates whether each column value lies between a specified range.

0 commit comments

Comments
 (0)