ContributionsMost RecentMost LikesSolutionsSwagger Editor,Swagger codegen cli:All examples in specification not getting returned in HTML doc Hi, I have added multiple examples for schema object as below in YAML Specification for a REST API : This is getting reflected properly in Swagger UI But only one example of Schema Object is getting returned in static HTML downloaded from Swagger Editor, behavior is same while generating HTML documentation from Swagger codegen cli tool. Expecting all examples to be returned in downloaded HTML. Please suggest a way to achieve this. Swagger Editor - Generating HTML documentation does not render minLength and maxLength property. Hi, I have used Swagger Editor to write a specification of a REST API. I have described minLength and maxLength fields for properties under one of the schemas as below : I am able to see the corresponding properties correctly in the Instant Visualisation UI But when I download HTML documentation for the same, minLength and maxLength properties are not rendered. Is there any way through which these properties can be returned in downloaded HTML format documentation? Thanks in advance for the help! SwaggerHub | Download documentation in dynamic html Hi, I tried to download documentation in dynamic HTML format using Swagger Hub. Blank HTML got generated with just the operation name, hyperlinks don't seem to work. Attaching the screenshot in this post. Am I doing something wrong here? Any inputs appreciated! Re: Swagger Hub - Swagger Editor | Not able to see externalDocs hyperlink in exported HTML Hi HKosova , thanks for the reply. I am facing similar issue as in the below github link but with OAS Version 3.0.0. Can you confirm if the issue still persists in 3.0.0 or there is something that I have to incorporate from my side. If the case is former, is there any workaround or expected time frame for the fix that I can look forward to ? Swagger CodeGen swagger-codegen-cli-3.0.25.jar| issue:Can't load config class with name jaxrs-jersey Hi, I am trying to generate Swagger Stubs from within the java code through swagger-codegen-cli-3.0.25.jar using ProcessBuilder. Input is OAS 3.0.0 valid YAML. I have the following code : String javaBin = javaHome + File.separator + "bin" + File.separator + "java"; List<String> command = new ArrayList<>(); command.add(javaBin); command.add("-jar"); command.add(System.getProperty("user.dir")+"//lib//swagger-codegen-cli-3.0.25.jar"); command.add("generate"); command.add("-l jaxrs-jersey"); command.add("-i " + oasYAML.getAbsolutePath()); command.add("-o D:\\EmailStatement\\swaggercode"); Same CLI command works fine from CMD, but getting below error from within java code : Exception in thread "main" java.lang.RuntimeException: Can't load config class with name jaxrs-jersey Available: dart aspnetcore csharp csharp-dotnet2 go go-server dynamic-html html html2 java jaxrs-cxf-client jaxrs-cxf inflector jaxrs-cxf-cdi jaxrs-spec jaxrs-jersey jaxrs-di jaxrs-resteasy-eap jaxrs-resteasy micronaut spring nodejs-server openapi openapi-yaml kotlin-client kotlin-server php python python-flask r ruby scala scala-akka-http-server swift3 swift4 swift5 typescript-angular typescript-axios typescript-fetch javascript at io.swagger.codegen.v3.CodegenConfigLoader.forName(CodegenConfigLoader.java:31) at io.swagger.codegen.v3.cli.SwaggerCodegen.main(SwaggerCodegen.java:96) Caused by: java.lang.ClassNotFoundException: jaxrs-jersey at java.net.URLClassLoader.findClass(URLClassLoader.java:382) at java.lang.ClassLoader.loadClass(ClassLoader.java:418) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:355) at java.lang.ClassLoader.loadClass(ClassLoader.java:351) at java.lang.Class.forName0(Native Method) at java.lang.Class.forName(Class.java:264) at io.swagger.codegen.v3.CodegenConfigLoader.forName(CodegenConfigLoader.java:29) Swagger Hub - Swagger Editor | Not able to see externalDocs hyperlink in exported HTML I am using Swagger Editor for documenting my API specification with OAS version 3.0.0 and need to link external documentation in it. I tried using externalDocs tag as below: externalDocs: description: Third Party Documentation url: file:///D:/Doc/Request.pdf I am able to see a hyperlink when I do View Documentation from Swagger Hub, but the same is missing in exported documentation in HTML Format.