fork of hey-api/openapi-ts because I need some additional things
1{
2 "openapi": "3.1.0",
3 "info": { "title": "Sibling Schema Test", "version": "1.0.0" },
4 "paths": {
5 "/test": {
6 "get": {
7 "responses": {
8 "200": {
9 "description": "ok",
10 "content": {
11 "application/json": {
12 "schema": {
13 "$ref": "sibling-schema-wrapper.json#/components/schemas/Wrapper_Schema"
14 }
15 }
16 }
17 }
18 }
19 }
20 }
21 }
22}