Axway · JSON Structure

Amplify Platform Password Policy Structure

Password policy

Type: object Properties: 9
API ManagementEnterpriseIntegrationSecurity

PasswordPolicy is a JSON Structure definition published by Axway, describing 9 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

length max_length lower upper special digit lockout renewal history

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "PasswordPolicy",
  "description": "Password policy",
  "type": "object",
  "properties": {
    "length": {
      "type": "integer",
      "minimum": 9,
      "maximum": 127,
      "default": 8,
      "example": 1
    },
    "max_length": {
      "type": "integer",
      "minimum": 9,
      "maximum": 127,
      "default": 128,
      "example": 1
    },
    "lower": {
      "type": "integer",
      "minimum": 1,
      "example": 1
    },
    "upper": {
      "type": "integer",
      "minimum": 1,
      "example": 1
    },
    "special": {
      "type": "integer",
      "minimum": 1,
      "example": 1
    },
    "digit": {
      "type": "integer",
      "minimum": 1,
      "example": 1
    },
    "lockout": {
      "type": "integer",
      "minimum": 1,
      "maximum": 4,
      "default": 5,
      "example": 1
    },
    "renewal": {
      "type": "integer",
      "minimum": 1,
      "example": 1
    },
    "history": {
      "type": "integer",
      "minimum": 1,
      "maximum": 10,
      "example": 1
    }
  }
}