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 parameter explode false example",
5 "version": "1"
6 },
7 "paths": {
8 "/foo": {
9 "post": {
10 "parameters": [
11 {
12 "name": "foo",
13 "in": "query",
14 "explode": false,
15 "schema": {
16 "type": "array",
17 "items": {
18 "type": "string"
19 }
20 }
21 }
22 ],
23 "responses": {
24 "default": {
25 "description": "OK"
26 }
27 }
28 }
29 }
30 }
31}