The paginated response returned when querying quality scores through the v2 endpoint. Contains a page of ScoreItem entries along with total item count and page metadata. In latest mode, the response contains a single item representing the most recent score. In history mode, items are sorted by effective date ascending and may span multiple pages.
Referenced by: GET
/v2/quality/scores/{assetId}
Sorting
| Property |
Description |
currentPage |
The page number of the scores in this response. |
pageSize |
The number of scores returned per page. |
Pagination
| Property |
Description |
totalPages |
The total number of pages available given the requested page size. |
Parameters
| Property |
Description |
items |
The page of quality score records for the requested asset and date range. |
totalItems |
The total number of score records available across all pages. |
JSON Example
{
"items": [
{
"assetId": "68c289f1c78ac464af9a3fd0",
"dimensionId": "66ac9fe6091f80486b23249c",
"score": 0.88,
"scoreBand": [{ "label": "Good", "color": "green", "minimumValue": 0.8 }],
"effectiveDate": "2024-03-01"
}
],
"totalItems": 1,
"totalPages": 1,
"currentPage": 1,
"pageSize": 10
}