openapi-to-postman
openapi-to-postman copied to clipboard
Plugin for converting OpenAPI 3.0 specs to the Postman Collection (v2) format
Line 850 produces the following error: ``` C:\Users\anonymous\Downloads>openapi2postmanv2 -s api-docs.json -o postman.json Input file: C:\Users\anonymous\Downloads\api-docs.json TypeError: Cannot read property 'example' of null at Object.convertToPmBodyData (C:\Users\rpolanco\AppData\Roaming\npm\node_modules\openapi-to-postmanv2\lib\schemaUtils.js:860:17) at Object.convertToPmResponseBody (C:\Users\rpolanco\AppData\Roaming\npm\node_modules\openapi-to-postmanv2\lib\schemaUtils.js:759:25) at Object.convertToPmResponse...
fixes #166 @umeshp7 @shreys7 please review. Documented to the best of my understanding, though I still feel like a better job can be done for some params after some discussion.
Howdy Postman People! I wanted to make a quick issue to track the progress towards supporting OpenAPI v3.1. I'm sure you folks are all familiar with it and I bet...
This option forces all requests to inherit auth from the top of the collection. This is really useful when all requests should be using the same authentication. If authentication is...
This PR adds support for OpenAPI specification generation from a collection or array of postman requests.
Currently an OAuth2 Security Scheme in OpenAPI ```json "securitySchemes": { "OAuth2": { "type": "oauth2", "description": "Lorem Ipsum", "in": "header", "scheme": "https", "flows": { "authorizationCode": { "authorizationUrl": "https://acme.com/oauth/authorize", "tokenUrl": "https://acme.com/oauth/token", "scopes":...
Collection agaist schema doesn't support validation correctly for allOf keyword for provided schema.
In this case (API schema below), the user expects that the test data they pass should be invalid because `specificType` property value does not contain a `grandParentTypeData` property. However, Postman...
Hi, We have an OpenAPI v3 file that's around 5mb in size with 300+ endpoints. When we try to import this as a collection, the following error is shown. However,...
Hello I importing from swagger v2.0 to postman v9.19.3 And after import my request body is type application/x-www-form-urlencoded and looks like this  But Inside swagger I have json body,...