Example of Password Policy
This is an example of password policy
{
"expirePeriodInDays": 50,
"numberOfFailedLoginAttempts": 3,
"inactivePeriodInDays": 60,
"userSessionTimeoutSeconds": 300,
"passwordRules": [
{
"type": ".LengthPRule",
"min": 4,
"max": 20
},
{
"type": ".UsernamePRule"
},
{
"type": ".HistoryPRule",
"lastPasswordVerifyCount": 2
},
{
"type": ".CharacterCharacteristicsPRule",
"numberOfCharacteristics": 1,
"ruleList": [
{
"type": ".UppercaseCharacterPRule",
"numCharacters": 2
}
]
}
]
}