openapi-snippet icon indicating copy to clipboard operation
openapi-snippet copied to clipboard

Generates code snippets for given Swagger / Open API documents

Results 37 openapi-snippet issues
Sort by recently updated
recently updated
newest added

The project is awesome! The pull request want to make the project more perfect by providing the following patches: * `getEndpointSnippets` supports an optional `values` parameter to provide query parameters....

First of all, thank you for the work on this library! Do you plan to support openAPI v3.1.x in the near future?

## Summary When using FastAPI, attempting to utilize the `getEndpointSnippets` function on an endpoint with an optional query parameter of enum type, which has a default value set, results in...

Hi @ErikWittern, This is working fine with node.js but when used in Typescript we are getting error saying type doesn't exist. Tried our best to declare a new type but...

OpenAPI 3.0 supports usage of [multiple API Keys](https://swagger.io/docs/specification/authentication/api-keys/). ``` components: securitySchemes: apiKey: type: apiKey in: header name: X-API-KEY appId: type: apiKey in: header name: X-APP-ID security: - apiKey: [] appId:...

OpenApi allows for servers to define one or more server objects, each of which has a `url` that supports server variables. A server variable looks like a symbol in braces....

Hi @ErikWittern I'm maintaining a fork of this great library with some changes we've made. One additional change I'm considering is to require some explicit "signal" to include a parameter...