Skip to content

Instantly share code, notes, and snippets.

@dalelane
Last active July 20, 2019 22:35
Show Gist options
  • Select an option

  • Save dalelane/360d349dff170d5d0e24a841e772b2dd to your computer and use it in GitHub Desktop.

Select an option

Save dalelane/360d349dff170d5d0e24a841e772b2dd to your computer and use it in GitHub Desktop.
Example of an Avro schema - used in https://dalelane.co.uk/blog/?p=3781
{
"type": "record",
"name": "Type9",
"namespace": "co.uk.dalelane",
"fields": [
{
"name": "requiredString",
"type": "string"
},
{
"name": "optionalString",
"type": ["string", "null"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment