{ "$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": "lpasteur@benchling.com", "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" }