In my original test I was just testing directly th...
# http4k
r
In my original test I was just testing directly the ContractRoute (as a stand alone HttpHandler) out of a contract definition and didn't thought about the contract render having an inpact on that. But just setting the renderer OpenApi3 it is already more detailed
Copy code
{
  "message": "Missing/invalid parameters",
  "params": [
    {
      "name": "body",
      "type": "body",
      "datatype": "object",
      "required": true,
      "reason": "Invalid"
    }
  ]
}
So for the errors messages I'll test with that application stack.
👍 1