Labguru · Schema

NoteBaseRequest

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

NoteBaseRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/NoteBaseRequest.json",
  "title": "NoteBaseRequest",
  "type": "object",
  "required": [
    "token"
  ],
  "properties": {
    "token": {
      "type": "string",
      "example": "YOUR TOKEN IS HERE"
    },
    "item": {
      "type": "object",
      "required": [
        "title",
        "project_id"
      ],
      "properties": {
        "title": {
          "type": "string",
          "description": "the note title "
        },
        "body": {
          "type": "string",
          "description": "body description of the note"
        },
        "project_id": {
          "type": "integer",
          "description": "the project id to add note to"
        }
      }
    }
  }
}