Maximum Row Length¶
/api/repositories/{repository}/entities/{entity}/rows/maxlength
| Parameter | Type | Purpose |
|---|---|---|
| repository | string | the name of the Repository |
| entity | int | The ID of the entity to view |
-
GET/api/repositories/(string: repository)/entities/(int: entityID)/rows/maxlength¶ Details of the longest row in the entity in the Entity
GET /api/repositories/jupiter/entities/1/rows/maxlength HTTP/1.1
Accept: application/json
| Response Code | Reason |
|---|---|
| 200 | No error |
| 500 | Server error |
The response will be a Standard Response.
The columns array will contain the following columns:
| Human Name | Column Name | Description |
|---|---|---|
| Row length | _value | The data value |
| Frequency | FREQUENCY_COUNT | The number of times the data value occurs in the attribute |
| Dist % | _distribution | A measure of how much of the attribute contains the data value |
The rows array will contain a single element, showing the maximum row length details for the Entity; the metadata will contain the URL to drill-down to the matching rows:
{
"rows": [
{
"dataRow": [
"48",
"3394",
"99.971"
],
"metadata": {
"url": "/api/repositories/jupiter/entities/1/rows/maxlength/matches"
}
}
]
}
If there are no rows in the Entity, rows will be empty.