fork of hey-api/openapi-ts because I need some additional things
1{
2 "openapi": "3.1.0",
3 "info": { "title": "Collision Test", "version": "1.0.0" },
4 "paths": {
5 "/main": {
6 "get": {
7 "responses": {
8 "200": {
9 "description": "ok",
10 "content": {
11 "application/json": {
12 "schema": {
13 "$ref": "sibling-schema-collision-wrapper.json#/components/schemas/MainSchema"
14 }
15 }
16 }
17 }
18 }
19 }
20 },
21 "/other": {
22 "get": {
23 "responses": {
24 "200": {
25 "description": "ok",
26 "content": {
27 "application/json": {
28 "schema": {
29 "$ref": "sibling-schema-collision-other.json#/components/schemas/OtherSchema"
30 }
31 }
32 }
33 }
34 }
35 }
36 }
37 }
38}