curl --request POST \
--url https://api.example.com/api/vector-db/tables \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"schema": {
"columns": [
{
"name": "<string>",
"type": "<string>",
"constraints": [
"<string>"
]
}
]
},
"data": [
{}
]
}
'