azure-functions-openapi-extension
                                
                                 azure-functions-openapi-extension copied to clipboard
                                
                                    azure-functions-openapi-extension copied to clipboard
                            
                            
                            
                        This extension provides an Azure Functions app with Open API capability for better discoverability to consuming parties
Enum in generated OpenAPI document is defined inline. ```"components": { "schemas": { "myRequest": { (...) "properties": { "myEnumProperty": { "enum": [ "value1", "value2" ], "type": "string", (...) ``` When using...
**Describe the issue** It would be nice to allow to implement custom logic to manipulate the generation of operations and schemas, similarly to what Swashbuckle provides: [Extend Generator with Operation,...
When using Swashbuckle.AspNetCore.Swagger I amd able to specify the ClientId to pre-fill the auth form: `app.UseSwaggerUI(o => o.OAuthClientId(Configuration["SwaggerUI:ClientId"]));` I can further specify the scopes to send with that request: ```...
**Describe the issue** We have an Azure Func app hosted in **Linux Premium plan, private network, using only https**, but the Swagger UI cannot display APIs like below: [![enter image...
# Describe the issue Hi, I have been using this library for a while now and got the request from my boss to implement unit tests into our exisiting azure...
Function apps are a great way to implement a microservice architecture. When creating serverless APIs, it would be nice to combine the outputted swagger docs into one document. I know...
**Describe the issue** OpenApi Document generation is not including the schema definition of the type of Array. **To Reproduce** Steps to reproduce the behavior: 1. With Visual Studio 2022, Create...
My AzureFunction ( i.e. its attributes/annotations ) looks something like this: ``` [FunctionName("GetQuotes")] [OpenApiOperation(operationId: "GetQuotes", tags: new[] { "quotes" })] [OpenApiResponseWithBody(statusCode: HttpStatusCode.OK, contentType: "application/json", bodyType: typeof(QuotesDto), Description = "The OK...
Could you please provide any information on how I can handle versioning with your extension? Unfortunately, I haven't found any examples or information about versioning in this repo. Example: I...
**Describe the issue** When using this library in a new Azure Functions project (.net6, runtime V4) it works locally but not on Azure. `Object reference not set to an instance...