mirror of
https://github.com/metosin/reitit.git
synced 2025-12-17 08:21:11 +00:00
52 lines
2.3 KiB
Markdown
52 lines
2.3 KiB
Markdown
|
|
# OpenAPI Support
|
||
|
|
|
||
|
|
Reitit can generate [OpenAPI 3.1.0](https://spec.openapis.org/oas/v3.1.0)
|
||
|
|
documentation. The feature works similarly to [Swagger documentation](swagger.md).
|
||
|
|
|
||
|
|
The [http-swagger example](../../examples/http-swagger) also has OpenAPI documentation.
|
||
|
|
|
||
|
|
## OpenAPI data
|
||
|
|
|
||
|
|
The following route data keys contribute to the generated swagger specification:
|
||
|
|
|
||
|
|
| key | description |
|
||
|
|
| ---------------|-------------|
|
||
|
|
| :openapi | map of any openapi data. Can contain keys like `:deprecated`.
|
||
|
|
| :content-types | vector of supported content types. Defaults to `["application/json"]`
|
||
|
|
| :no-doc | optional boolean to exclude endpoint from api docs
|
||
|
|
| :tags | optional set of string or keyword tags for an endpoint api docs
|
||
|
|
| :summary | optional short string summary of an endpoint
|
||
|
|
| :description | optional long description of an endpoint. Supports http://spec.commonmark.org/
|
||
|
|
|
||
|
|
Coercion keys also contribute to the docs:
|
||
|
|
|
||
|
|
| key | description |
|
||
|
|
| --------------|-------------|
|
||
|
|
| :parameters | optional input parameters for a route, in a format defined by the coercion
|
||
|
|
| :responses | optional descriptions of responses, in a format defined by coercion
|
||
|
|
|
||
|
|
Use `:request` parameter coercion (instead of `:body`) to unlock per-content-type coercions. See [Coercion](coercion.md).
|
||
|
|
|
||
|
|
## Swagger spec
|
||
|
|
|
||
|
|
Serving the OpenAPI specification is handled by `reitit.openapi/create-openapi-handler`. It takes no arguments and returns a ring handler which collects at request-time data from all routes and returns an OpenAPI specification as Clojure data, to be encoded by a response formatter.
|
||
|
|
|
||
|
|
You can use the `:openapi` route data key of the `create-openapi-handler` route to populate the top level of the OpenAPI spec.
|
||
|
|
|
||
|
|
Example:
|
||
|
|
|
||
|
|
```
|
||
|
|
["/openapi.json"
|
||
|
|
{:get {:handler (openapi/create-openapi-handler)
|
||
|
|
:openapi {:info {:title "my nice api" :version "0.0.1"}}
|
||
|
|
:no-doc true}}]
|
||
|
|
```
|
||
|
|
|
||
|
|
If you need to post-process the generated spec, just wrap the handler with a custom `Middleware` or an `Interceptor`.
|
||
|
|
|
||
|
|
## Swagger-ui
|
||
|
|
|
||
|
|
[Swagger-ui](https://github.com/swagger-api/swagger-ui) is a user interface to visualize and interact with the Swagger specification. To make things easy, there is a pre-integrated version of the swagger-ui as a separate module.
|
||
|
|
|
||
|
|
- TIP: downgrade to 3.0.0 if needed
|