fork of hey-api/openapi-ts because I need some additional things
1{
2 "openapi": "3.1.1",
3 "info": {
4 "title": "OpenAPI 3.1.1 security bearer example",
5 "version": "1"
6 },
7 "paths": {
8 "/foo": {
9 "get": {
10 "responses": {
11 "200": {
12 "description": "OK"
13 }
14 },
15 "security": [
16 {
17 "foo": []
18 }
19 ]
20 }
21 }
22 },
23 "components": {
24 "securitySchemes": {
25 "foo": {
26 "bearerFormat": "JWT",
27 "scheme": "bearer",
28 "type": "http"
29 }
30 }
31 }
32}