**What is your use-case and why do you need this feature?** [The @SerialName is a bit buried in the documentation](https://github.com/Kotlin/kotlinx.serialization/blob/master/docs/basic-serialization.md#serial-field-names) It took a few minutes for me to find that. **Describe the solution you'd like** Update the top-level README to contain an example of a custom field name, like so: ```kotlin @Serializable class Project(val name: String, @SerialName("lang") val language: String) ```