Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 50 additions & 23 deletions docs/reference/rest_api.json
Original file line number Diff line number Diff line change
Expand Up @@ -904,29 +904,9 @@
"OIDCConfig": {
"properties": {
"well_known_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"type": "string",
"title": "Well Known Url",
"description": "URL to fetch OIDC config from the provider",
"deprecated": true
},
"issuer": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Issuer",
"description": "URL of OIDC provider"
"description": "URL to fetch OIDC config from the provider"
},
"client_id": {
"type": "string",
Expand All @@ -949,6 +929,7 @@
"additionalProperties": false,
"type": "object",
"required": [
"well_known_url",
"client_id"
],
"title": "OIDCConfig"
Expand Down Expand Up @@ -1226,6 +1207,16 @@
},
"kind": {
"$ref": "#/components/schemas/TaskKind"
},
"user": {
"anyOf": [
{
"$ref": "#/components/schemas/User"
},
{
"type": "null"
}
]
}
},
"type": "object",
Expand All @@ -1235,10 +1226,46 @@
"status",
"blueapi_calls",
"position",
"kind"
"kind",
"user"
],
"title": "TaskWithPosition"
},
"User": {
"properties": {
"fedid": {
"type": "string",
"title": "Fedid"
},
"email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Email"
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Name"
}
},
"type": "object",
"required": [
"fedid"
],
"title": "User"
},
"ValidationError": {
"properties": {
"loc": {
Expand Down
Loading