-
Notifications
You must be signed in to change notification settings - Fork 0
/
api.html
executable file
·41 lines (37 loc) · 1.45 KB
/
api.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
35
36
37
38
39
40
41
---
layout: default
title: APIs @ VA
overview: true
---
<link href='css/screen.css' media='screen' rel='stylesheet' type='text/css'/>
<script type="text/javascript">
$(function () {
window.swaggerUi = new SwaggerUi({
url: "/gsa-dev-hub/api.json",
dom_id: "swagger-ui-container",
supportedSubmitMethods: ['get', 'post', 'put', 'delete'],
onComplete: function(swaggerApi, swaggerUi){
if(console) {
console.log("Loaded SwaggerUI")
}
$('pre code').each(function(i, e) {hljs.highlightBlock(e)});
},
onFailure: function(data) {
if(console) {
console.log("Unable to Load SwaggerUI");
console.log(data);
}
},
docExpansion: "none"
});
window.swaggerUi.load();
});
</script>
<h2>API Resources</h2>
<br />
<p>This area provides access to API resources that allow you to access content and data for the purpose of building applications that support citizens.</p>
<p>These APIs are not currently maintained by the government, it is meant to just be a prototype to help show various stakeholders in federal government, what is possible.</p>
<p style="color:#FF0000; font-size:14px; font-weight: bold; text-align:center;"><strong><i>This page is still having issues displaying in Internet Explorer, try Firefox or Chrome until fixed!</i></strong></p>
<div class="swagger-shell">
<div id="swagger-ui-container" class="swagger-ui-wrap"></div>
</div>