fork of hey-api/openapi-ts because I need some additional things
1{
2 "openapi": "3.1.0",
3 "info": {
4 "title": "OpenAPI 3.1.0 const example",
5 "version": "1"
6 },
7 "paths": {
8 "/foo": {
9 "get": {
10 "responses": {
11 "200": {
12 "description": "OK",
13 "content": {
14 "application/json": {
15 "schema": {
16 "const": "First line.\n\nSecond line.\n\nPS: I love you.",
17 "type": "string"
18 }
19 }
20 }
21 }
22 }
23 }
24 }
25 }
26}