-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 1.86 KB
/
index.html
File metadata and controls
36 lines (33 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<title>Swagger UI Aggregated</title>
<link rel="stylesheet" type="text/css"
href="https://unpkg.com/swagger-ui-dist/swagger-ui.css"/>
</head>
<body>
<div id="swagger-ui"></div>
<script src="https://unpkg.com/swagger-ui-dist/swagger-ui-bundle.js"></script>
<script src="https://unpkg.com/swagger-ui-dist/swagger-ui-standalone-preset.js"></script>
<script>
const specs = [
{"name":"Antr\u00E4ge API","url":"https://raw.githubusercontent.com/europace/baufismart-antraege-api/master/swagger.yaml"},
{"name":"Ereignisse API","url":"https://raw.githubusercontent.com/europace/baufismart-ereignisse-api/master/ereignisse-openapi.yaml"},
{"name":"Unterlagen API","url":"https://raw.githubusercontent.com/europace/unterlagen-api/master/swagger.yaml"},
{"name":"Unterlagen Push API","url":"https://raw.githubusercontent.com/europace/unterlagen-api/master/push-nachrichten/swagger.yaml"},
{"name":"Angebote API","url":"https://raw.githubusercontent.com/europace/baufismart-angebote-api/master/angebote-openapi.yaml"},
{"name":"Dokumente API","url":"https://raw.githubusercontent.com/europace/baufismart-dokumente-api/master/dokumente-openapi.yaml"},
{"name":"Finn API","url":"https://raw.githubusercontent.com/europace/finn-api/refs/heads/main/finn-openapi.yaml"},
{"name":"Vorgänge API","url":"https://raw.githubusercontent.com/europace/baufismart-vorgaenge-api/master/swagger.yaml"},
{"name":"Kundenangaben API","url":"https://raw.githubusercontent.com/europace/baufismart-kundenangaben-api/refs/heads/master/kundenangaben-openapi.yaml"}
];
const ui = SwaggerUIBundle({
urls: specs,
dom_id: '#swagger-ui',
deepLinking: true,
presets: [SwaggerUIBundle.presets.apis, SwaggerUIStandalonePreset],
layout: "StandaloneLayout"
});
</script>
</body>
</html>