Open wweburg opened 1 month ago
Note: nested field names in JSON serializations won't automatically map to local language format field names (e.g. this_field vs. thisField). Each JSON parser and encoder will need to be looked at to see what if anything can be mapped by the library as far as names. Otherwise, writing a manual mapper to rename things would be tedious. This is already somewhat required by C as it is, and would get worse. Options are
Nested objects aren't yet supported, only objects at the root level that map to the resource. Adding support for nested objects shouldn't be too hard. It should be possible to detect JSON in the values of the fields and automatically encode/decode at the server and client.