Hi! I want to take a schema with maps that have kebab-base keys and turn it into another schema where the maps have camelCase keys. Is there something built in to do these kinds of transformation on the schemas themselves (rather than the values) or do I just need to walk through it (maybe using the AST representation)?
These fns are what you want https://github.com/metosin/malli#programming-with-schemas
For recursive changes you can look at the open/closed until fns for inspiration
more samples here: https://github.com/metosin/malli/blob/master/docs/tips.md