I have 2 endpoints implemented in Visual Studio with routes defined respectively like "Part1/Part2/Part3/{ItemAsInteger}" (type of integer) and "Part1/Part2/Part3/{ItemAsString}" (type of string). NSwag for OAS 3.0 generates the JSON for the two endpoints with no issue ( it generates the two separately with the correct type used). However when this JSON was imported into Azure mgmt It complained that these were duplicates.
On way to solve this would be by explicitly disambiguating like "Part1/Part2/Part3/ByString/{ItemAsString}". But we prefer not to do it this way. Is there a way to make Azure import this correctly?