Amazon WorkMail · Schema

ResetPasswordRequest

ResetPasswordRequest schema from Amazon WorkMail API

Business CommunicationCalendarEmailExchangeEnterprise

Properties

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

JSON Schema

workmail-reset-password-request-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "OrganizationId",
    "UserId",
    "Password"
  ],
  "title": "ResetPasswordRequest",
  "properties": {
    "OrganizationId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/OrganizationId"
        },
        {
          "description": "The identifier of the organization that contains the user for which the password is reset."
        }
      ]
    },
    "UserId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/WorkMailIdentifier"
        },
        {
          "description": "The identifier of the user for whom the password is reset."
        }
      ]
    },
    "Password": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Password"
        },
        {
          "description": "The new password for the 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-reset-password-request-schema.json",
  "description": "ResetPasswordRequest schema from Amazon WorkMail API"
}