To generate html output from an open api specification you can use the swagger_to_html
tag, eg:
1 | --- |
The location of swagger file (
<swagger_path>
) can be a local file path or a URL.
Examples
With a local path:
1
{% swagger_to_html ./petstore.yaml %}
With a URL:
1
{% swagger_to_html https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/examples/v2.0/json/petstore.json %}
oauth2
.
password
.
https://auth.example.com/oauth2/token
.
petstore.read
: Access to read petstore
petstore.write
: Access to write to petstore
petstore.read
scope is required for oauth
.
Header
Authorization
string (OAUTH2 (IAM) or JWT token)
required
OAUTH2 (IAM) or JWT token
Path
limit
integer (int32)
Used in query
Maximum number of results to return
|
|
Status Code:
200
Pet response.
Reference
data
array
List of pets
data[]
object
Pet description
data[].id
integer
Id of pet
data[].name
string
Name of pet
Eg. Foo
data[].type
string
Type of pet
Eg. cat
data[].gender
enum
Gender of pet
Allowed values:
male , female .
|
|
Status Code:
403
Forbidden
Reference
code
integer (int32)
required
Status code
message
string
required
Status message
|
This is a default response for the request.
unexpected error
Reference
code
integer (int32)
required
message
string
required
|
petstore.write
and petstore.read
scopes are required for oauth
.
Header
Authorization
string (OAUTH2 (IAM) or JWT token)
required
OAUTH2 (IAM) or JWT token
Request Body
name
string
required
Name of pet
Eg. Foo
type
string
Type of pet
Eg. cat
gender
enum
Gender of pet
Allowed values:
male , female .
|
|
Status Code:
201
pet response
Reference
id
integer
Id of pet
name
string
Name of pet
Eg. Foo
type
string
Type of pet
Eg. cat
gender
enum
Gender of pet
Allowed values:
male , female .
|
|
Status Code:
403
Forbidden
Reference
code
integer (int32)
required
Status code
message
string
required
Status message
|
This is a default response for the request.
unexpected error
Reference
code
integer (int32)
required
message
string
required
|
petstore.read
scope is required for oauth
.
Header
Authorization
string (OAUTH2 (IAM) or JWT token)
required
OAUTH2 (IAM) or JWT token
Path
id
integer (int64)
required
Used in path
ID of pet to fetch
|
|
Status Code:
200
pet response
Reference
id
integer
Id of pet
name
string
Name of pet
Eg. Foo
type
string
Type of pet
Eg. cat
gender
enum
Gender of pet
Allowed values:
male , female .
|
|
Status Code:
403
Forbidden
Reference
code
integer (int32)
required
Status code
message
string
required
Status message
|
This is a default response for the request.
unexpected error
Reference
code
integer (int32)
required
message
string
required
|
petstore.write
and petstore.read
scopes are required for oauth
.
Header
Authorization
string (OAUTH2 (IAM) or JWT token)
required
OAUTH2 (IAM) or JWT token
Path
id
integer (int64)
required
Used in path
ID of pet to delete
|
|
Status Code:
204
Pet deleted.
Reference
|
Status Code:
403
Forbidden
Reference
code
integer (int32)
required
Status code
message
string
required
Status message
|
This is a default response for the request.
unexpected error
Reference
code
integer (int32)
required
message
string
required
|