Tables
Describe a table
Describe a table and return Table Information.
POST
Authorizations
Path Parameters
name of the table
Response
200
application/json
Table information
Name of the table
The latest version of the table
JSON representation of an Arrow schema.
Example:
{
"fields": [
{ "name": "id", "type": { "name": "int64" } },
{
"name": "name",
"type": { "type": "string" }
},
{
"name": "vector",
"type": { "type": "float32", "length": 128 }
}
],
"metadata": { "key": "value" }
}