Files
matrix-authentication-service/policies/schema/email_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
255 B
JSON

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