Labguru · Schema

createEvent

Electronic Lab NotebookELNLIMSLaboratory Information ManagementBiotechLife SciencesResearch Data ManagementInventory ManagementExperiment ManagementREST APIGraphQL
View JSON Schema on GitHub

JSON Schema

createEvent.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/createEvent.json",
  "title": "createEvent",
  "allOf": [
    {
      "$ref": "#/components/schemas/EventBaseRequest"
    },
    {
      "type": "object",
      "properties": {
        "item": {
          "type": "object",
          "required": [
            "name",
            "start_date",
            "end_date"
          ]
        }
      }
    }
  ]
}