Labguru · Schema

deleteUnit

Electronic Lab NotebookELNLIMSLaboratory Information ManagementBiotechLife SciencesResearch Data ManagementInventory ManagementExperiment ManagementREST APIGraphQL

Properties

Name Type Description
token string
unit_type string weight/volume/concentration
View JSON Schema on GitHub

JSON Schema

deleteUnit.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/deleteUnit.json",
  "title": "deleteUnit",
  "type": "object",
  "required": [
    "token",
    "unit_type"
  ],
  "properties": {
    "token": {
      "type": "string",
      "example": "YOUR TOKEN IS HERE"
    },
    "unit_type": {
      "type": "string",
      "description": "weight/volume/concentration",
      "example": "weight"
    }
  }
}