Is it possible to customize the name of an auto-derived schema for a generic case class? Example:
case class Foo[T](t: T)
case class Bar()
endpoint.post.out(jsonBody[Foo[Bar]])
Generating OpenAPI docs on this endpoint will result in a schema with the name Foo_Bar, whereas I might want its name to actually be BarFoo or any other arbitrary name.