Labguru · Schema

submitRequest

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

submitRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/submitRequest.json",
  "title": "submitRequest",
  "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 request"
        },
        "team_id": {
          "type": "integer",
          "description": "The performing team ID"
        },
        "due_date": {
          "type": "string",
          "format": "date",
          "description": "Date in the following format - 'YYYY-MM-DD'",
          "example": "2024-03-11"
        }
      }
    }
  }
}