Amazon WorkMail · Schema

DeleteUserRequest

DeleteUserRequest schema from Amazon WorkMail API

Business CommunicationCalendarEmailExchangeEnterprise

Properties

Name Type Description
OrganizationId object
UserId object
View JSON Schema on GitHub

JSON Schema

workmail-delete-user-request-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "OrganizationId",
    "UserId"
  ],
  "title": "DeleteUserRequest",
  "properties": {
    "OrganizationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrganizationId"
        },
        {
          "description": "The organization that contains the user to be deleted."
        }
      ]
    },
    "UserId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkMailIdentifier"
        },
        {
          "description": "The identifier of the user to be deleted."
        }
      ]
    }
  },
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workmail/refs/heads/main/json-schema/workmail-delete-user-request-schema.json",
  "description": "DeleteUserRequest schema from Amazon WorkMail API"
}