Hello,
I'm newly created a test database here
I'm trying to send the following json to the REST API (tables endpoint)
{ "name": "products", "ifNotExist": true, "columnDefinitions": [ { "name": "id", "typeDefinition": "uuid", "static": false }, { "name": "sku", "typeDefinition": "string", "static": false } ], "primaryKey": { "partitonKey": [ "id", "sku" ] }, "tableOptions": { "defaultTimeToLive": 0 } }
SyntaxException: line 1:86 no viable alternative at input ')' (...sku string, PRIMARY KEY ([)]...) unfortunatly I dont see whats wrong here. Please help!