I have a requirement for loading multiple Swagger-UI components on one page on AEM6.5. My component template in AEM6.5 looks like this: ${model.title} window.onload = function () { window.ui = SwaggerUIBundle({ urls: [ {url: "${path @ context='text'}", name: "${name @ context='text'}"}, ], dom_id: '#${dom_id @ context='text'}', deepLinking: true, filter: true, presets: [ SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset ], plugins: [ SwaggerUIBundle.plugins.DownloadUrl ], layout: 'StandaloneLayout' }); }; The problem is that no matter I use the unique ID only one swagger component will render on the page and the other will not. I can see t...