Labguru · Schema

CellLineBaseRequest

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

CellLineBaseRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/CellLineBaseRequest.json",
  "title": "CellLineBaseRequest",
  "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 cell line"
        },
        "owner_id": {
          "type": "integer",
          "description": "The ID of the owner - by default it's your member id"
        },
        "organism": {
          "type": "string",
          "description": "The organism from which the cells were originated"
        },
        "tissue": {
          "type": "string",
          "description": "The tissue from which the cells were extracted"
        },
        "medium_and_serum": {
          "type": "string",
          "description": "A supplement used for cultivating cells"
        },
        "source": {
          "type": "string",
          "description": "The location or environment from which the cells were originated"
        },
        "description": {
          "type": "string",
          "description": "A detailed description of the cell line"
        }
      }
    }
  }
}