Table
Metadata

Create a table with the given name

Create a new table in the namespace. Supports both lance-namespace format (with namespace in body) and LanceDB format (with database in headers).

post/v1/table/{id}/create

Path parameters

idstring required

string identifier of an object in a namespace, following the Lance Namespace spec. When the value is equal to the delimiter, it represents the root namespace. For example, v1/namespace/./list performs a ListNamespace on the root namespace.

Response

Table properties result when creating a table

namestring required
namespacestring[] required
locationstring required
{"stackTrail":"components:schemas:CreateTableResponse:properties:properties","oasType":"schema","type":"unknown"}

Example response

{
  "name": "name",
  "namespace": [
    "namespace",
    "namespace"
  ],
  "location": "location",
  "properties": {
    "key": "properties"
  }
}

Changes