...
1{
2 "components": {
3 "securitySchemes": {
4 "BearerToken": {
5 "description": "Bearer Token authentication",
6 "in": "header",
7 "name": "authorization",
8 "type": "apiKey"
9 }
10 }
11 },
12 "info": {
13 "title": "Kubernetes",
14 "version": "unversioned"
15 },
16 "openapi": "3.0.0",
17 "paths": {
18 "/openid/v1/jwks/": {
19 "get": {
20 "description": "get service account issuer OpenID JSON Web Key Set (contains public token verification keys)",
21 "operationId": "getServiceAccountIssuerOpenIDKeyset",
22 "responses": {
23 "200": {
24 "content": {
25 "application/jwk-set+json": {
26 "schema": {
27 "type": "string"
28 }
29 }
30 },
31 "description": "OK"
32 },
33 "401": {
34 "description": "Unauthorized"
35 }
36 },
37 "tags": [
38 "openid"
39 ]
40 }
41 }
42 }
43}
View as plain text