Labguru · Schema

ProjectBaseRequest

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

ProjectBaseRequest.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/ProjectBaseRequest.json",
  "title": "ProjectBaseRequest",
  "type": "object",
  "required": [
    "token"
  ],
  "properties": {
    "token": {
      "type": "string",
      "example": "YOUR TOKEN IS HERE"
    },
    "item": {
      "type": "object",
      "properties": {
        "title": {
          "type": "string",
          "description": "The name of the project"
        },
        "description": {
          "type": "string",
          "description": "Description of the project"
        },
        "start_date": {
          "type": "string",
          "format": "date",
          "description": "Start Date (yyyy-mm-dd)"
        },
        "closed": {
          "type": "boolean",
          "description": "Archived/Active project flag"
        },
        "status": {
          "type": "string",
          "description": "Status"
        },
        "owner_id": {
          "type": "integer",
          "description": "ID of the owner (default: your member id)"
        }
      }
    }
  }
}