reitit

lgessler 2025-06-05T17:39:07.638209Z

hi, if I have a rest api that can handle both application/edn and application/json, is there a recommended way of making keywords like :my-ns/kebab-property in e.g. a body parameter look nicer in JSON? A hack would be to just write some middleware that would expect myNsKebabProperty or kebabProperty in the request and rewrite it to my-ns/kebab-property, but it seems like a problem with this is that my OpenAPI spec would be junk since the malli schemas i'm using would be unaffected...