Labguru · Schema

CompanyBaseRequest

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

CompanyBaseRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/CompanyBaseRequest.json",
  "title": "CompanyBaseRequest",
  "type": "object",
  "required": [
    "token"
  ],
  "properties": {
    "token": {
      "type": "string",
      "example": "YOUR TOKEN IS HERE"
    },
    "item": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string",
          "description": "the company name"
        },
        "address": {
          "type": "string",
          "description": "address of the company"
        },
        "web": {
          "type": "string",
          "description": "link to the company web page "
        },
        "contact": {
          "type": "string",
          "description": "contacts "
        },
        "email": {
          "type": "string",
          "description": "email "
        },
        "fax": {
          "type": "string",
          "description": "fax number "
        },
        "description": {
          "type": "string",
          "description": "general description "
        }
      }
    }
  }
}