Labguru · Schema

updateVector

Electronic Lab NotebookELNLIMSLaboratory Information ManagementBiotechLife SciencesResearch Data ManagementInventory ManagementExperiment ManagementREST APIGraphQL

Properties

Name Type Description
token string
dataset_id integer the dataset id
vector_data string fields must be same as column headers in the dataset - {"data_header": "item_name"}
View JSON Schema on GitHub

JSON Schema

updateVector.json Raw ↑
{
  "$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"
      }
    }
  }
}