The theme provides tools to read and parse swagger files as well as generate documentation from them.
It provides following two tags which can grab the swagger schema from a local or remote location and create beautiful and easy to read documents.
The theme also provides features to decorate/modify the swagger spec before using it. A use case that can explain the rationale behind this feature is, sometime we might want to modify the swagger and remove some endpoints from being exposed in the documentation.
Decorators provided by the theme:
You can add an x-doc
object with exclude: true
property to remove spec definitions/objects from being processed.
The flag can be added in the following places.
Excluding path - To remove a complete path from the spec add the x-doc
object to that path.
For instance, to remove /pets
from the following sample schema.
1 | swagger: "2.0" |
Excluding operation - To remove an operation from the spec you can add an x-doc
object to that operation.
For instance, to remove get
operaton for the /pet
path in the following sample schema.
1 | swagger: "2.0" |
Excluding parameters - To remove parameters, add an x-doc
object to the parameter. If you add x-doc
to a parameter definition, the parameter will be skipped from every place where it is referenced.
Example -
1 | swagger: 2.0"" |
Excluding security definitions - To remove any security definiton add an x-doc
object to the definition and it will be removed from every place it is being used.
Example -
1 | swagger: "2.0" |
There can be instances when you want to update the host in the swagger schema but just for the documentation purposes.
You can do it by adding a host
key in an x-doc
object in the root of the document.
1
2
3
4
5swagger: "2.0"
host: "petstore.swagger.io"
basePath: "/api"
x-doc:
host: "mysandbox.swagger.io"
Specifications are parsed using swagger-parser. Is possible to specify options via configuration. Example:
1 | theme_config: |
If specifications reside on a protected remote location, you can use resolve.http.headers
to inject Authorization
headers. Example:
1 | theme_config: |
<%= env.ACCESS_TOKEN %>
will be replaced with the value of the environment variable:ACCESS_TOKEN
.
This is a simple technique to don’t hardcode sensitive data.