fork of hey-api/openapi-ts because I need some additional things
1{
2 "openapi": "3.0.0",
3 "info": {
4 "title": "Test API",
5 "version": "1.0.0"
6 },
7 "paths": {
8 "/resolution": {
9 "get": {
10 "summary": "Get resolution step",
11 "responses": {
12 "200": {
13 "description": "Success",
14 "content": {
15 "application/json": {
16 "schema": {
17 "$ref": "external-with-siblings.json#/components/schemas/ResolutionStep"
18 }
19 }
20 }
21 }
22 }
23 }
24 },
25 "/action": {
26 "get": {
27 "summary": "Get action info",
28 "responses": {
29 "200": {
30 "description": "Success",
31 "content": {
32 "application/json": {
33 "schema": {
34 "$ref": "external-with-siblings.json#/components/schemas/ActionInfo"
35 }
36 }
37 }
38 }
39 }
40 }
41 }
42 }
43}