swagger-combine
swagger-combine copied to clipboard
Combines multiple Swagger schemas into one dereferenced schema.
Hello. Currently I have an issue with combine. Error message looks like "Token "" does not exist.". I've like 20 separate files that should be merged, so this message doesn't...
Is there any way to exclude/include multiple parameters? Like this; ``` apis: - url: 'http:///' paths: parameters: include: "/abc": ["parameter1", "parameter2"] ``` Obviously this doesn't work presently!
`version 0.18.1` If you have a model with a recursive property like: ``` "Person": { "required": ["id", "persons"], "type": "object", "properties": { "id": { "format": "int64", "minimum": 0, "exclusiveMinimum": true,...
Hello! I can see that it is possible to filter by operation (get, post, put, delete). It would be a great feature to be able to exclude (or include) paths...
Using below cmd - swagger-combine config.json -o combinedSchema.json I am able to access the swagger JSON directly but when added that in the config.json, I am getting an error as...
Hello, i have problem trying to combine openapi-yaml because many of yaml files have this configuration: ecurity: - bearerAuth: [] x-amazon-apigateway-integration: uri: "lambda blah blah blah" passthroughBehavior: "when_no_match" httpMethod: "POST"...
In #35 a support for `definitions` has been added. These `definitions` are from the Swagger 2 version and have been replaced by [components](https://swagger.io/docs/specification/components/) in OpenApi 3. At the moment all...
Hi! How can I retain the information about each API (the [Info Object](https://swagger.io/specification/#infoObject)) in the produced output?
**Describe the bug** My examples are being converted to integers although they should be strings (ex: phone numbers). This causes problem when validating my openapi file, as the parameter is...
It would be helpful to be able to throw away security definitions in each individual source and add new ones for all APIs (whitelist likely, similar to paths.include model). This...