Benchling · Schema

User

Life SciencesBiotechR&DMolecular BiologyLaboratory Information ManagementElectronic Lab NotebookAssay ManagementInventory ManagementSequence ManagementExperiment WorkflowsRESTWebhooks
View JSON Schema on GitHub

JSON Schema

User.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/benchling/json-schema/User.json",
  "title": "User",
  "allOf": [
    {
      "$ref": "#/components/schemas/UserSummary"
    },
    {
      "example": {
        "email": "[email protected]",
        "handle": "lpasteur",
        "id": "ent_a0SApq3z",
        "isSuspended": false,
        "name": "Louis Pasteur"
      }
    },
    {
      "properties": {
        "apiKeyLastChangedAt": {
          "nullable": true,
          "type": "string"
        },
        "email": {
          "type": "string"
        },
        "isSuspended": {
          "type": "boolean"
        },
        "passwordLastChangedAt": {
          "nullable": true,
          "type": "string"
        }
      }
    }
  ],
  "type": "object"
}