Something went wrong. Try again.
fork of hey-api/openapi-ts because I need some additional things
Something went wrong. Try again.
571 B · 31 lines
JSON
1234567891011121314151617181920212223242526272829303132{ "openapi": "3.0.0", "info": { "title": "OpenAPI 3.0.0 parameter explode false example", "version": "1" }, "paths": { "/foo": { "post": { "parameters": [ { "name": "foo", "in": "query", "explode": false, "schema": { "type": "array", "items": { "type": "string" } } } ], "responses": { "default": { "description": "OK" } } } } }}