{ "$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" }