-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.06 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="SwaggerUI">
<title>OpenAPI Specification for the Registration Data Access Protocol (RDAP)</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/swagger-ui.css">
<style>
html,body,p,ul,ol,li,table,tr,td,th,div {
line-height: 1.5em !important;
}
code {
font-weight: normal !important;
border: 0px !important;
margin: 0px !important;
padding: 0px !important;
background-color: rgba(0, 0, 0, 0) !important;
}
</style>
</head>
<body>
<div id="swagger-ui"></div>
<script src="https://unpkg.com/[email protected]/swagger-ui-bundle.js" crossorigin></script>
<script>
window.onload = () => {
window.ui = SwaggerUIBundle({
url: new URL("rdap-1.0.yaml", window.location).toString(),
dom_id: '#swagger-ui',
});
};
</script>
</body>
</html>