Avro is a compact and efficient binary file format used for serializing data during transmission. The schema of Avro files are specified in JSON.
JavaScript Object Notation (JSON), pronounced as Jason, is the most common data interchange format on the web. Douglas Crockford first released the JSON specification in the early 2000s. It is a simple format that is easier to comprehend than XML. It is also smaller in size because it does not have closing tags. A wide variety of programming languages can parse JSON files. They also support the serialization of data structures to JSON. You can copy JSON text to JavaScript and start using them without any modifications.
{ "name": "John Doe", "age": 69 }
{"name":"John Doe","age":69}
{"name":"John Doe","age":69}
{name:"John Doe",age:69}
No case Change
lower case change
UPPER CASE CHANGE
camelCaseChange
PascalCaseChange
Title Case Change
snake_case_change
kebab-case-change
Sentence case change
{ "name": "John Doe", "age": 25, "addresses": [ { "city": "Phoenix", "country": "Arizona" }, { "city": "Miami", "country": "Florida" } ] }
{ "name": "John Doe", "age": 25, "addresses": [ { "city": "Phoenix", "country": "Arizona" }, { "city": "Miami", "country": "Florida" } ] }
{ "name": "John Doe", "age": 25, "addresses": [ { "city": "Phoenix", "country": "Arizona" }, { "city": "Miami", "country": "Florida" } ] }
{ "name": "John Doe", "age": 25, "addresses": "[{\"city\":\"Phoenix\",\"country\":\"Arizona\"},{\"city\":\"Miami\",\"country\":\"Florida\"}]" }
{"systemTime":"2014-01-01T23:28:56.782Z"}
{"systemTime":"\/Date(1388618936782)\/"}