{
"type": "object",
"required": [
"OrganizationId",
"EntityId",
"Email"
],
"title": "RegisterToWorkMailRequest",
"properties": {
"OrganizationId": {
"allOf": [
{
"$ref": "#/components/schemas/OrganizationId"
},
{
"description": "The identifier for the organization under which the user, group, or resource exists."
}
]
},
"EntityId": {
"allOf": [
{
"$ref": "#/components/schemas/WorkMailIdentifier"
},
{
"description": "The identifier for the user, group, or resource to be updated."
}
]
},
"Email": {
"allOf": [
{
"$ref": "#/components/schemas/EmailAddress"
},
{
"description": "The email for the user, group, or resource to be updated."
}
]
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workmail/refs/heads/main/json-schema/workmail-register-to-work-mail-request-schema.json",
"description": "RegisterToWorkMailRequest schema from Amazon WorkMail API"
}