Amazon WorkMail · JSON Structure

Workmail Reset Password Request Structure

ResetPasswordRequest schema from Amazon WorkMail API

Type: object Properties: 3 Required: 3
Business CommunicationCalendarEmailExchangeEnterprise

ResetPasswordRequest is a JSON Structure definition published by Amazon WorkMail, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

OrganizationId UserId Password

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "required": [
    "OrganizationId",
    "UserId",
    "Password"
  ],
  "name": "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-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-workmail/refs/heads/main/json-structure/workmail-reset-password-request-structure.json",
  "description": "ResetPasswordRequest schema from Amazon WorkMail API"
}