{
"type": "object",
"required": [
"OrganizationId",
"EntityId",
"Alias"
],
"title": "CreateAliasRequest",
"properties": {
"OrganizationId": {
"allOf": [
{
"$ref": "#/components/schemas/OrganizationId"
},
{
"description": "The organization under which the member (user or group) exists."
}
]
},
"EntityId": {
"allOf": [
{
"$ref": "#/components/schemas/WorkMailIdentifier"
},
{
"description": "The member (user or group) to which this alias is added."
}
]
},
"Alias": {
"allOf": [
{
"$ref": "#/components/schemas/EmailAddress"
},
{
"description": "The alias to add to the member set."
}
]
}
},
"$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-alias-request-schema.json",
"description": "CreateAliasRequest schema from Amazon WorkMail API"
}