20 lines
650 B
JSON
20 lines
650 B
JSON
|
{
|
||
|
"$schema": "http://json-schema.org/draft-07/schema",
|
||
|
"$id": "https://github.com/marcua/ayb/tree/main/docs/config/endpoints/schema.json",
|
||
|
"title": "Endpoints",
|
||
|
"description": "Endpoints provided by the ayb frontend",
|
||
|
"type": "object",
|
||
|
"properties": {
|
||
|
"profile": {
|
||
|
"description": "The profile page",
|
||
|
"examples": ["/u/{entity}"],
|
||
|
"type": "string"
|
||
|
},
|
||
|
"confirmation": {
|
||
|
"description": "The confirmation endpoint",
|
||
|
"examples": ["/auth/confirm/{entity}"],
|
||
|
"type": "string"
|
||
|
}
|
||
|
},
|
||
|
"required": ["profile", "confirmation"]
|
||
|
}
|