# Springdoc
For documenting our spring REST-API we use [SpringDoc-OpenAPI](https://springdoc.org/).
Please include it as a dependency in maven projects by adding this in the `pom.xml`:
```xml
...
1.6.9
...
...
org.springdoc
springdoc-openapi-ui
${org.springdoc.version}
...
```
Also add the path of the page in `application.propteries`:
```properties
springdoc.swagger-ui.path=/swagger-ui
```