Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
28 views

This is my ocelot configuration... { "Routes": [ { "UpstreamPathTemplate": "/api/test/{url}", "DownstreamPathTemplate": "/api/{url}",...
Nat Jacobs's user avatar
Best practices
1 vote
2 replies
103 views

I'm currently in a Project designing/extending an API for a customer. At some points, the existing Definiton uses the allOf Keyword in the schemas to combine different Subschemas, e.g.: "Foo"...
BenjaminK's user avatar
1 vote
0 answers
46 views

I have a class with the @RestController annotation which contains an endpoint defined like this @PostMapping(path = "/submitJob", consumes = { MediaType.MULTIPART_FORM_DATA_VALUE }, ...
Roland Roberts's user avatar
0 votes
0 answers
64 views

I have created a very simple demo project with one controller endpoint: Spring Boot 3.5.6 Springdoc 2.8.13 This was working much better in Spring Boot 2.7.x Full project here: https://github.com/...
Aslak's user avatar
  • 139
0 votes
0 answers
51 views

I’ve built a Spring Boot REST API that exposes an endpoint returning a list of animals (/animals). The API supports multiple animal subtypes (Cat, Bird), each with unique fields, and I’ve modeled them ...
Europa's user avatar
  • 1,422
-1 votes
1 answer
43 views

I am trying to document a Laravel API using l5-swagger (swagger-php). I have a request body where one property is a map of wallet IDs to effective dates, like this in PHP: [ 11 => "2025-12-...
Afshin Hasani's user avatar
1 vote
0 answers
70 views

I'm having trouble finding a solution to documenting a Map<String, List<Thing>> properly using Swagger annotations and Open API. Thing is annotated properly, but I cannot find the correct ...
Depressio's user avatar
  • 1,419
0 votes
0 answers
72 views

I'm running an ASP.NET API in Visual Studio. I have an endpoint to upload a file using IFormFile. [HttpPost(Name = "AddDocument")] [ProducesResponseType(StatusCodes.Status200OK)] public ...
Nejc Zagrušovcem's user avatar
0 votes
0 answers
41 views

This is my controller package example.infra.adapters.input.api.v1.endpoints import example.aplication.services.authentication.LoginAuthenticator import example.aplication.dtos.authentication....
David P's user avatar
1 vote
1 answer
105 views

I want to download Swagger file of project X in my Analyzer project but I don't want to run project X. I have access to project X's source code & I can build the solution. I tried dotnet swagger ...
Aisa Asghari's user avatar
0 votes
0 answers
34 views

I have two yml files Common.yml and application.yml Both under same folder I have certain schemas like sortOrder that are defined in common schema And using $ref it is referred in application.yaml ...
JayakumarSivasankar's user avatar
0 votes
0 answers
43 views

So i am using Swagger Documentation and OpenAPI CLI Tool to auto generate Api Call etc Logics final response = await _api .getAuthenticationApi() .authControllerRegisterV1( ...
Hacxk's user avatar
  • 21
1 vote
0 answers
71 views

How do I add information to Swagger docs for: format pattern max length I was thinking just put them on a object and add attributes, but I need them to be a primitive because I am using them in the ...
Micah Armantrout's user avatar
1 vote
1 answer
204 views

I'm building an ASP.NET Core Web API endpoint that needs to receive an array of complex objects via multipart/form-data. Each object includes key-value string pairs and an optional file upload. Each ...
bcExpt1123's user avatar
0 votes
0 answers
63 views

I'm trying to generate a single OpenAPI YAML file in an aggregator module that imports other Micronaut modules as dependencies. Context I have multiple modules (A, B, C) that define Micronaut ...
Bianca's user avatar
  • 1
0 votes
0 answers
19k views

In a DevOps Release I am getting suddenly this error in "API Management - Create or Update API" step: 2025-06-25T10:48:25.3264215Z Creating or updating API https://management.azure.com/...
Jorge's user avatar
  • 123
-3 votes
1 answer
98 views

Kiota is a command-line tool that consumes an OpenAPI/Swagger specifications of a more-or-less REST-ful API and generates code for client(s) to call the API. I am faced with an OpenAPI/Swagger JSON ...
bmargulies's user avatar
  • 101k
1 vote
0 answers
67 views

I am creating two separate swagger pages for my API. One "Full" page with all endpoints for internal use and one "Limited" page for external users. So I have added this decorator ...
Basje313's user avatar
1 vote
1 answer
59 views

Im working on a project based on JAXRS annotations. Im configuring a Swagger UI to sumarize all the endpoints of the project and to execute them from there. Im implementing OAS 3 which supports ...
Víctor Gallardo's user avatar
0 votes
0 answers
26 views

I'm using Python 3.11 and I am struggling a lot to understand this. When I try to access to the Swagger documentation of my service, in localhost, I have this error: generate_definitions ...
RobyB's user avatar
  • 1,546
1 vote
1 answer
72 views

I’m using L5 Swagger in a Laravel project to generate OpenAPI documentation. I’ve written a custom command (app/Console/Commands/GenerateSwaggerAnnotations.php) that parses controller methods and ...
Inji Aliyeva's user avatar
1 vote
0 answers
43 views

I have a Spring boot java 23 web api using maven. In my pom.xml I am using springdoc-openapi v2.8.8: <dependency> <groupId>org.springdoc</groupId> <artifactId>springdoc-...
CrazyEight's user avatar
1 vote
0 answers
175 views

I have an asp.net-core project that acts as a proxy to different other services. So, a user would send a GET-request to <myproxy>/someservice/foo/bar/baz, where my proxy would send a request to ...
Emil Bode's user avatar
  • 1,879
-1 votes
1 answer
51 views

I have something like this for my Flask app using flask_restx: from flask import Blueprint, request from flask_restx import Api, Resource, Namespace blueprint = Blueprint('location_api', __name__) ...
user2526586's user avatar
  • 1,342
0 votes
1 answer
121 views

I have controller with some methods. One of them has parameter with "CatchAll" asterisk, this is to allow sending values ​​that contain /. [HttpGet] [Route("Check/{*routeAddress}")]...
banana's user avatar
  • 1,156

1
2 3 4 5
249