{ "type": "object", "required": [ "OrganizationId", "Name", "DisplayName", "Password" ], "title": "CreateUserRequest", "properties": { "OrganizationId": { "allOf": [ { "$ref": "#/components/schemas/OrganizationId" }, { "description": "The identifier of the organization for which the user is created." } ] }, "Name": { "allOf": [ { "$ref": "#/components/schemas/UserName" }, { "description": "The name for the new user. WorkMail directory user names have a maximum length of 64. All others have a maximum length of 20." } ] }, "DisplayName": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The display name for the new user." } ] }, "Password": { "allOf": [ { "$ref": "#/components/schemas/Password" }, { "description": "The password for the new user." } ] } }, "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workmail/refs/heads/main/json-schema/workmail-create-user-request-schema.json", "description": "CreateUserRequest schema from Amazon WorkMail API" }