Request for a feature to transform keys in `Schema.struct` from snake_case to camelCase

It would be nice to have a way to transform each key of a Schema.struct to e.g. turn it from snake_case to camelCase, basically
tokenType: Schema.String.pipe(
  Schema.propertySignature,
  Schema.fromKey("token_type")
)

but on an object level for each key using some global transformation like String.snakeToCamel.
We already have something very similar in @effect/sql with transformQueryNames/transformResultNames and its super nice
Was this page helpful?