Represents the quality score for a single dimension within an asset's overall quality assessment. Each dimension groups related rules and field-level metrics under a shared quality concept such as Completeness or Accuracy. The object includes the dimension's aggregated score, the applicable score band, child rule and field scores, and the timestamp of the most recent execution.
Search
| Property |
Description |
name |
The display name of this quality dimension, such as Completeness or Accuracy. |
Parameters
| Property |
Description |
id |
The unique identifier of this quality dimension. |
targets |
The number of assets targeted by rules within this dimension. |
score |
The aggregated quality score for this dimension, expressed as a value between 0 and 1. |
childQualityScores |
The detailed breakdown of scores for child assets and rules within this dimension. |
scoreBands |
The score band that this dimension's score falls within, indicating its quality level. |
lastRunAt |
The ISO 8601 timestamp of the most recent evaluation that produced a score for this dimension. |
JSON Example
{
"id": "66ac9fe6091f80486b23249c",
"name": "Completeness",
"targets": 2,
"score": 0.95,
"scoreBands": {
"label": "Good",
"color": "green",
"minimumValue": 0.9
},
"lastRunAt": "2025-12-12T05:25:58.968Z",
"childQualityScores": {
"assetScores": {
"totalPages": 1,
"totalItems": 2,
"currentPage": 1,
"pageSize": 10,
"items": [
{
"id": "68c289f1c78ac464af9a3fd1",
"name": "FIRSTNAME",
"score": 1.0,
"lastRunAt": "2025-12-12T05:25:57.949Z"
}
]
},
"ruleScores": []
}
}