fork of hey-api/openapi-ts because I need some additional things
1{
2 "openapi": "3.0.0",
3 "info": {
4 "title": "OpenAPI 3.0.0 operation 204 example",
5 "version": "1"
6 },
7 "paths": {
8 "/foo": {
9 "post": {
10 "responses": {
11 "200": {
12 "description": "OK",
13 "content": {
14 "application/json": {
15 "schema": {
16 "type": "string"
17 }
18 }
19 }
20 },
21 "204": {
22 "description": "Created"
23 }
24 }
25 }
26 }
27 }
28}