Files
matrix-authentication-service/policies/schema/client_registration_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

15 lines
334 B
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "ClientRegistrationInput",
"description": "Input for the client registration policy.",
"type": "object",
"required": [
"client_metadata"
],
"properties": {
"client_metadata": {
"type": "object",
"additionalProperties": true
}
}
}