Row Details =========== .. code-block:: http /api/repositories/{repository}/entities/{entity}/rows/{rowID}/details .. csv-table:: :header: Parameter, Type, Purpose :widths: 20, 20, 60 :stub-columns: 1 repository, string, the name of the :doc:`repository` entity, int, The ID of the entity to view rowID, int, The ID of the row in the :doc:`entity` .. http:get:: /api/repositories/(string:repository)/entities/(int:entityID)/rows/(int:rowID)/details :synopsis: Lists the details of the attributes and values of the corresponding row in the entity Lists the details of the attributes and values of the corresponding row in the :doc:`entity` .. code-block:: http GET /api/repositories/jupiter/entities/1/rows/2/details HTTP/1.1 Accept: application/json .. csv-table:: :header: Response Code, Reason :widths: 25, 75 200, No error 500, Server error The response will be a :doc:`standard-response`, with a list of details of the attributes and values of the corresponding row in the :doc:`entity`. The ``columns`` array will contain the list of columns for each data row. .. csv-table:: :header: Human Name, Column Name, Description :widths: 25, 25, 50 "Column", "_col0", "The position" "Name", "_col1", "The name of the column" "Documented Datatype", "_col2", "The documented datatype for the column" "Length", "_col3", "The length of the column value" "Value", "_col4", "The value of the column" data row will contain the details of the corresponding row of the :doc:`entity`: .. code-block:: json "rows": [ { "dataRow": [ "1", "Ordnum", "Integer", "5", "32696", "5", "32696" ] } ] If there are no rows in the :doc:`entity`, ``rows`` will be an empty string.