Labguru · Schema

MaintenanceTemplateBaseRequest

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

MaintenanceTemplateBaseRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/MaintenanceTemplateBaseRequest.json",
  "title": "MaintenanceTemplateBaseRequest",
  "type": "object",
  "required": [
    "token"
  ],
  "properties": {
    "token": {
      "type": "string",
      "example": "YOUR TOKEN IS HERE"
    },
    "item": {
      "type": "object",
      "properties": {
        "equipment_type": {
          "type": "string",
          "description": "the equipment type"
        },
        "maintenance_type_id": {
          "type": "integer",
          "description": "maintenance type id"
        },
        "data": {
          "type": "string",
          "description": "templates fields in the follwing json format",
          "example": "[{\"title\":\"Detergent\",\"value\":\"Wateriii:\"}]"
        }
      }
    }
  }
}