Namespace
Metadata
Describe a namespace
Describe the detailed information for namespace id.
post/v1/namespace/{id}/describe
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.
Query parameters
delimiterstring
An optional delimiter of the string identifier, following the Lance Namespace spec. When not specified, the $ delimiter must be used.
Request body
Example request
{
"identity": {
"api_key": "api_key",
"auth_token": "auth_token"
},
"context": {
"key": "context"
},
"id": [
"id",
"id"
]
}Response
Returns a namespace, as well as any properties stored on the namespace if namespace properties are supported by the server.
Example response
{
"context": {
"key": "context"
},
"properties": {
"owner": "Ralph",
"created_at": "1452120468"
}
}