Adam Warski
Adam Warski
@NavidJalali well it can be done (using the second approach described above), but I'm afraid there's no progress on implementing this. If you don't know the part names upfront, you...
I don't think OpenAPI allows representing custom validators? If it does then we should add that logic :)
It's used when creating a `400 Bad Request` response (or at least, it should be) :)
Closing this one as I think the problem is solved. Please reopen if that's not the case.
Thanks! :) Maybe we'll be able to leverage your work
Currently I think automatically deriving schemas for scala3 enums is not possible. This can be solved in two ways: * when https://github.com/lampepfl/dotty/discussions/15895 is resolved in some positive way * when...
@longliveenduro the schema is derived when calling `jsonBody[...]` so I think if you add the implicit before that call (assuming you are using auto-derviation) things should work Sth like: ```scala...
Scala 3 enumerations should be now fully customisable, as documented here: https://tapir.softwaremill.com/en/latest/endpoint/enumerations.html
This is an interesting problem, which is another way of saying - I'm not sure how to fix this :) The problem is that when doing: ```scala implicit def schema[A:...
For a follow-up discussion on implementing this properly in Scala 3, see: https://github.com/lampepfl/dotty/discussions/14291