Get detailed information about a table including schema, statistics, and metadata. This endpoint provides comprehensive table information useful for understanding table structure, monitoring performance metrics, and planning data operations.
name of the table
Detailed table information including schema, statistics, and metadata.
The response includes:
Name of the table. Useful for confirming the correct table is being described.
"products"
The latest version of the table. Increments with each data modification. Useful for tracking changes and implementing optimistic concurrency control.
5
Complete Arrow schema defining the table structure. Includes field names, types, nullability, and metadata.
{
"fields": [
{ "name": "id", "type": { "name": "int64" } },
{
"name": "name",
"type": { "type": "string" }
},
{
"name": "vector",
"type": { "type": "float32", "length": 128 }
}
],
"metadata": { "key": "value" }
}Performance and storage statistics for the table. Useful for monitoring table health and planning operations.