1<!-- HTML for static distribution bundle build --> 2<!DOCTYPE html> 3<html lang="en"> 4 <head> 5 <meta charset="UTF-8" /> 6 <title>Swagger UI</title> 7 <link 8 rel="stylesheet" 9 type="text/css" 10 href="https://unpkg.com/[email protected]/swagger-ui.css" 11 /> 12 <link 13 rel="icon" 14 type="image/png" 15 href="https://unpkg.com/[email protected]/favicon-32x32.png" 16 sizes="32x32" 17 /> 18 <link 19 rel="icon" 20 type="image/png" 21 href="https://unpkg.com/[email protected]/favicon-16x16.png" 22 sizes="16x16" 23 /> 24 <style> 25 html { 26 box-sizing: border-box; 27 overflow: -moz-scrollbars-vertical; 28 overflow-y: scroll; 29 } 30 *, 31 *:before, 32 *:after { 33 box-sizing: inherit; 34 } 35 body { 36 margin: 0; 37 background: #fafafa; 38 } 39 .topbar { 40 display: none; 41 } 42 </style> 43 </head> 44 <body> 45 <div id="swagger-ui"></div> 46 <script 47 src="https://unpkg.com/[email protected]/swagger-ui-bundle.js" 48 charset="UTF-8" 49 ></script> 50 <script 51 src="https://unpkg.com/[email protected]/swagger-ui-standalone-preset.js" 52 charset="UTF-8" 53 ></script> 54 <script> 55 window.onload = function () { 56 // Begin Swagger UI call region 57 const ui = SwaggerUIBundle({ 58 url: "openapi.yaml", 59 dom_id: "#swagger-ui", 60 deepLinking: true, 61 presets: [SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset], 62 plugins: [SwaggerUIBundle.plugins.DownloadUrl], 63 layout: "StandaloneLayout", 64 }); 65 // End Swagger UI call region 66 window.ui = ui; 67 }; 68 </script> 69 </body> 70</html> 71