SMILEY4

Results 10 comments of SMILEY4

Hi, you can overwrite the enums toString-method and use that as the values for the path parameters ```kotlin enum class Animal(private val type: String) { Dog("dog"), Cat("cat"), Mouse("mouse"); overwrite fun...

Hi, Thank you! it adds the raw/complete name (including the package path) when the type has a generic type. I don't remember the reason for this behaviour, but it should...

Hi, I am currently a bit confused about the api code generator. Assuming you could give every schema in the components section its own name/alias, how would the generator handle...

Hi, After just quickly looking into this, i think the issue is a result of a "JacksonModule"-addon being removed from the library that generates the json-schemas from classes to resolve...

Hi, sorry for the very late response :/ I'm trying to find a proper future-proof solution but for now i only have a workaround - with the disadvantages described in...

closing this issue since it should be resolved with upcoming version 3

Hi, thanks for the pr. Could you quickly explain why this change is necessary, i.e. which problem this is trying to solve. I think I'm overlooking something here :)

Ah, i see. Looks good then 👍 Thank you!

Hi, Thanks. You can customize the schema-objects with the `@Schema`-annotation and add for example add the annotation on the limit-field and set the `maximum`-property. You can find more information here:...

Unfortunately, there is currently no other way besides annotations. I'm currently in the process of rewriting the code responsible for handling schemas and objects, so that (describing attributes without annotations/touching...