Benchling · Schema

UserCreate

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks

Properties

Name Type Description
email string Email of the User
handle string Handle of the User
name string Name of the User
View JSON Schema on GitHub

JSON Schema

UserCreate.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/UserCreate.json",
  "title": "UserCreate",
  "additionalProperties": false,
  "properties": {
    "email": {
      "description": "Email of the User",
      "type": "string"
    },
    "handle": {
      "description": "Handle of the User",
      "type": "string"
    },
    "name": {
      "description": "Name of the User",
      "type": "string"
    }
  },
  "required": [
    "name",
    "email",
    "handle"
  ],
  "type": "object"
}