ibex.endpoints.ids_info.node_info

async ibex.endpoints.ids_info.node_info(uri: str, show_error_bars: bool = False) dict

IBEX endpoint. Returns metadata of a node (leaf or intermediate).

Response JSON is constructed as follows:
{
“name”: <node_name (str)>,
“type”: <type_of_data (str)>,
“ndim”: <number_of_data_dimensions (int)>,
“shape”: <data_shape (list(int))>,
“children”: <node_info_of_children_nodes (list(dict))>,
“coordinates”: <coordinates_names (list(str))>
}
Parameters:
uri: str

IMAS URI with the path to leaf node

Return type:

dict (automatically converted to JSON by FastAPI)

Returns:

JSON response