GetAccountPasswordPolicyResponse

Contains the response to a successful GetAccountPasswordPolicy request.

APIs.ioEngineeringPlatform

Properties

Name Type Description
PasswordPolicy object
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-getaccountpasswordpolicyresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetAccountPasswordPolicyResponse",
  "title": "GetAccountPasswordPolicyResponse",
  "type": "object",
  "required": [
    "PasswordPolicy"
  ],
  "example": {
    "PasswordPolicy": {
      "AllowUsersToChangePassword": false,
      "ExpirePasswords": false,
      "HardExpiry": false,
      "MaxPasswordAge": 90,
      "MinimumPasswordLength": 8,
      "PasswordReusePrevention": 12,
      "RequireLowercaseCharacters": false,
      "RequireNumbers": true,
      "RequireSymbols": true,
      "RequireUppercaseCharacters": false
    }
  },
  "properties": {
    "PasswordPolicy": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PasswordPolicy"
        },
        {
          "description": "A structure that contains details about the account's password policy."
        }
      ]
    }
  },
  "description": "Contains the response to a successful <a>GetAccountPasswordPolicy</a> request. "
}