fork of hey-api/openapi-ts because I need some additional things
1{
2 "openapi": "3.1.1",
3 "info": {
4 "title": "OpenAPI 3.1.1 internal name conflict example",
5 "version": "1"
6 },
7 "paths": {
8 "/foo": {
9 "get": {
10 "operationId": "create__",
11 "responses": {
12 "200": {
13 "description": "OK"
14 }
15 }
16 },
17 "patch": {
18 "operationId": "create_",
19 "responses": {
20 "200": {
21 "description": "OK"
22 }
23 }
24 },
25 "post": {
26 "operationId": "create",
27 "responses": {
28 "200": {
29 "description": "OK"
30 }
31 }
32 }
33 }
34 }
35}