ktor-swagger-ui icon indicating copy to clipboard operation
ktor-swagger-ui copied to clipboard

Kotlin Ktor plugin to generate OpenAPI and provide Swagger UI

Results 17 ktor-swagger-ui issues
Sort by recently updated
recently updated
newest added

I have a call that expect a list of strings as a query parameter, as following: ``` endpoint?v=abc&v=xyz ``` but i can't define it as: ``` request{ queryParameter("v", List::class) }...

Add [ktor.deployment.rootPath](https://ktor.io/docs/server-configuration-file.html#predefined-properties) to paths in openapi.json.

My server has DTO models, but I would like the API to have names without the DTO suffix. Because of that, I would like to annotate the models as so:...

Imagine i have a call where the path parameters can only be of a certain value for instance: ["dog", "cat", "mouse"] Any other value is deemed invalid, so i would...

Hey, Thanks for the nice library. It was an easy setup! This is more of a nice-to-have, but would be immensely helpful in my case. I was able to configure...

As of version 2.7.x, it seems that all my sealed classes annotated with Jackson are no longer detected. Previously, the output for a given class was the following: ```json "RemoteGithubProjectRequest-1"...

Thank you for providing this library! It's very clean. How would I describe a Body parameter, and what the acceptable values are for it? ```Kotlin body { required = true...

the openapi spec is missing type: string for enum types. this causes generators like orval to generate faulty code.

Hey! I was wondering if it was possible to globally replace `Instant` to a `int64` when it's converted to the OpenAPI Spec, when we send data from our service to...

I am using kotlinx for serialization, but the schema generated for the value class is incorrect. For example, I have a value class like this: ```kotlin @JvmInline @Serializable value class...