Labguru · Schema

BacteriumBaseRequest

Electronic Lab NotebookELNLIMSLaboratory Information ManagementBiotechLife SciencesResearch Data ManagementInventory ManagementExperiment ManagementREST APIGraphQL

Properties

Name Type Description
token string
item object
View JSON Schema on GitHub

JSON Schema

BacteriumBaseRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/BacteriumBaseRequest.json",
  "title": "BacteriumBaseRequest",
  "type": "object",
  "required": [
    "token"
  ],
  "properties": {
    "token": {
      "type": "string",
      "example": "YOUR TOKEN IS HERE"
    },
    "item": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "The name of the bacterium"
        },
        "sensitivity": {
          "type": "string",
          "description": "Details the bacterium\u2019s sensitivity to antibiotics or other agents."
        },
        "strain": {
          "type": "string",
          "description": "The specific strain of the bacterium"
        },
        "source": {
          "type": "string",
          "description": "The origin or isolation source of the bacterium (e.g., environmental, clinical)."
        },
        "owner_id": {
          "type": "integer",
          "description": "The ID of the owner - by default it's your member id"
        },
        "description": {
          "type": "string",
          "description": "A detailed description of the bacterium"
        }
      }
    }
  }
}