Skip to content

Commit

Permalink
normalize schema update
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelbadawi committed Sep 11, 2024
1 parent 93fc3f1 commit b2b1d6d
Showing 1 changed file with 23 additions and 13 deletions.
36 changes: 23 additions & 13 deletions docs/config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -1550,20 +1550,12 @@
"minimum": 0.0
},
"rest_auth_provider": {
"description": "The REST authentication provider configuration",
"type": "object",
"properties": {
"url": {
"description": "The base URL where the identity service is implemented",
"type": "string"
},
"version": {
"description": "Implemented version of the identity service (e.g., 'v1', 'v2')",
"type": "string"
"description": "The REST authentication provider URL",
"allOf": [
{
"$ref": "#/definitions/RestAuthProviderConfig"
}
},
"required": ["url", "version"],
"nullable": true
]
}
}
},
Expand Down Expand Up @@ -1623,6 +1615,24 @@
}
]
},
"RestAuthProviderConfig": {
"description": "Configuration for REST password provider",
"type": "object",
"required": [
"url",
"version"
],
"properties": {
"url": {
"description": "The base URL where the identity service is implemented",
"type": "string"
},
"version": {
"description": "Implemented version of the identity service (\"v1\", \"v2\")",
"type": "string"
}
}
},
"MatrixConfig": {
"description": "Configuration related to the Matrix homeserver",
"type": "object",
Expand Down

0 comments on commit b2b1d6d

Please sign in to comment.