Describe the bug
In following endpoint specification I provide response object example:
val ep2 = Endpoint(RoutePattern.GET / "greeting" / string("name"))
.outCodec(HttpCodec.content[Greeting].example("1", Greeting("Hi Jane")) ?? Doc.p("Response"))
but the generated openAPI show response as:
Expected behaviour
The response example should be
Dependencies:
"dev.zio" %% "zio" % "2.1.9",
"dev.zio" %% "zio-http" % "3.0.1"
"dev.zio" %% "zio-schema" % "1.4.1"