{ "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" }