joscha.alisch
04/10/2018, 4:42 PMSelf-describing: - a generated endpoint is provided which describes all of the Routes in that module. Implementations include OpenApi/Swagger documentation, including generation of [JSON schema] (http://json-schema.org/) models for messages.Is the schema generation supposed to be working for lenses generated with
.auto<..>().toLens()
? If, yes it doesn’t seem to work for me. I get this:
"parameters" : [ {
"in" : "body",
"name" : "body",
"description" : null,
"required" : true,
"type" : "object"
} ],
for …. meta {
body = Body.auto<MyDataClass>().toLens()
} …