7.6 KiB
7.6 KiB
<html>
<head>
<script src='javascripts/app.js' type='text/javascript'></script>
<script src='javascripts/swagger-service.js' type='text/javascript'></script>
<script src='javascripts/swagger-ui.js' type='text/javascript'></script>
</head>
<script id="resourceTemplate" type="text/x-jquery-tmpl">
</script>
<script id="apiTemplate" type="text/x-jquery-tmpl">
</script>
<script id="operationTemplate" type="text/x-jquery-tmpl">
</script>
<script id="paramTemplate" type="text/x-jquery-tmpl">
${name}
${description}
</script>
<script id="paramTemplateSelect" type="text/x-jquery-tmpl">
${name}
{{if required == false }}
{{/if}}
{{each allowableValues.values}}
{{if $value == defaultValue && required == true}}
${$value}
{{else}}
${$value}
{{/if}}
{{/each}}
${description}
</script>
<script id="paramTemplateRequired" type="text/x-jquery-tmpl">
${name}
${description}
</script>
<script id="paramTemplateRequiredReadOnly" type="text/x-jquery-tmpl">
${name}
-
${description}
</script>
<script id="paramTemplateReadOnly" type="text/x-jquery-tmpl">
${name}
-
${description}
</script>
{{if notes}}
Implementation Notes
${notes}
{{/if}}Parameters
| Parameter | Value | Description |
|---|
Request URL
Response Body
Response Code
Response Headers
Enter the base URL of the API that you wish to explore, or try
petstore.swagger.wordnik.com/api
Sexy API documentation from Swagger.
</html>