fork of hey-api/openapi-ts because I need some additional things
at main 37 lines 685 B view raw
1{ 2 "openapi": "3.0.0", 3 "info": { 4 "title": "OpenAPI 3.0.0 content binary example", 5 "version": "1" 6 }, 7 "paths": { 8 "/foo": { 9 "get": { 10 "responses": { 11 "200": { 12 "content": { 13 "image/png": { 14 "schema": { 15 "type": "string", 16 "contentMediaType": "image/png", 17 "contentEncoding": "base64" 18 } 19 } 20 } 21 } 22 } 23 } 24 }, 25 "/bar": { 26 "get": { 27 "responses": { 28 "200": { 29 "content": { 30 "application/zip": {} 31 } 32 } 33 } 34 } 35 } 36 } 37}