{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/updateVector.json", "title": "updateVector", "type": "object", "required": [ "token" ], "properties": { "token": { "type": "string", "example": "YOUR TOKEN IS HERE" }, "dataset_id": { "type": "integer", "description": "the dataset id" }, "vector_data": { "type": "string", "description": "fields must be same as column headers in the dataset - {\"data_header\": \"item_name\"}", "example": { "column1": "value1", "column2": "value2" } } } }