Files
matrix-authentication-service/policies/schema/password_input.json
T
Quentin Gliech 7fcd022eea Make sure we validate passwords & emails by the policy at all stages
Also refactors the way we get the policy engines in requests
2023-08-30 19:39:39 +02:00

14 lines
267 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "PasswordInput",
"description": "Input for the password set policy.",
"type": "object",
"required": [
"password"
],
"properties": {
"password": {
"type": "string"
}
}
}