JSON Best Practices - abcxyz/readability GitHub Wiki

Naming

camelCase over snake_case

Property names should be camelCase wherever possible. This aligns with existing abcxyz code as well as Google's JSON style guide.

Currently, some repositories use snake_case for go struct tags, but those are due to them interacting with GitHub APIs which use snake_case.

Initialisms

TBD