Minimum Row Length

/api/repositories/{repository}/entities/{entity}/rows/minlength
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/minlength

Details of the shortest row in the Entity

GET /api/repositories/jupiter/entities/1/rows/minlength 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 minimum 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/alpha/entities/36/rows/minlength/matches"
            }
        }
    ]
}

If there are no rows in the Entity, rows will be an empty string.