ScottLogic / openapi-forge

⚒️🔥 Effortlessly create OpenAPI clients, in a range of languages, from the fiery furnace of our forge
8 stars 7 forks source link

Support file upload capabilities #175

Open ColinEberhardt opened 1 year ago

ColinEberhardt commented 1 year ago

See the swagger docs: https://swagger.io/docs/specification/describing-request-body/file-upload/

And the petstore example:

        "requestBody": {
          "content": {
            "application/octet-stream": {
              "schema": { "type": "string", "format": "binary" }
            }
          }
        },