Skip to content

Commit

Permalink
fix properties section so values are created correctly
Browse files Browse the repository at this point in the history
Signed-off-by: TomFitzpatrick <[email protected]>
  • Loading branch information
Tom-Fitzpatrick committed Dec 6, 2023
1 parent 5299b58 commit d1c0af8
Showing 1 changed file with 18 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,24 @@
"description": "Settings for passwords.",
"type": "object",
"default": {},
"userPasswordChangeExpiry": {
"description": "The amount of time (days) before the password must be updated again after user password change.",
"type": "integer",
"minimum": 30,
"default": 90
},
"adminPasswordChangeExpiry": {
"description": "The amount of time (days) before the password must be updated again after admin password change",
"type": "integer",
"minimum": 1,
"default": 7
},
"passwordExpiryWarningWindow": {
"description": "The time (days) before a password expires in which we begin to offer warnings about upcoming expiry.",
"type": "integer",
"default": 30
"properties": {
"userPasswordChangeExpiry": {
"description": "The amount of time (days) before the password must be updated again after user password change.",
"type": "integer",
"minimum": 30,
"default": 90
},
"adminPasswordChangeExpiry": {
"description": "The amount of time (days) before the password must be updated again after admin password change",
"type": "integer",
"minimum": 1,
"default": 7
},
"passwordExpiryWarningWindow": {
"description": "The time (days) before a password expires in which we begin to offer warnings about upcoming expiry.",
"type": "integer",
"default": 30
}
}
}
}
Expand Down

0 comments on commit d1c0af8

Please sign in to comment.