fork of hey-api/openapi-ts because I need some additional things
at main 32 lines 593 B view raw
1{ 2 "openapi": "3.1.0", 3 "info": { 4 "title": "OpenAPI 3.1.0 parameter tuple example", 5 "version": "1" 6 }, 7 "paths": { 8 "/foo": { 9 "post": { 10 "parameters": [ 11 { 12 "name": "tuple", 13 "in": "query", 14 "schema": { 15 "type": "array", 16 "minItems": 4, 17 "maxItems": 4, 18 "items": { 19 "type": "number" 20 } 21 } 22 } 23 ], 24 "responses": { 25 "default": { 26 "description": "OK" 27 } 28 } 29 } 30 } 31 } 32}