19 lines
506 B
JSON
19 lines
506 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "sykkelaksjon-openid",
|
|
"title": "Sykkelaksjon openid",
|
|
"description": "Server message telling where the openId server is",
|
|
"type": "object",
|
|
"properties": {
|
|
"openid_discovery_uri": {
|
|
"type": "string",
|
|
"description": "The discovery URI of the OpenID provider"
|
|
},
|
|
"client_id": {
|
|
"type": "string",
|
|
"description": "The client ID of the sykkelaksjon client"
|
|
}
|
|
},
|
|
"required": ["openid_discovery_uri", "client_id"]
|
|
}
|