Skip to content

Instantly share code, notes, and snippets.

@marctrem
Last active April 30, 2018 05:34
Show Gist options
  • Save marctrem/5b4ebbd32bcc8b1609643fe62144280c to your computer and use it in GitHub Desktop.
Save marctrem/5b4ebbd32bcc8b1609643fe62144280c to your computer and use it in GitHub Desktop.
Using Avro in FoundationDB
{
"type": "record",
"namespace": "gov.ed.schoolofrock",
"name": "Student",
"doc": "Represents a student",
"fields": [
{
"name": "name",
"type": "string"
},
{
"name": "age",
"type": "int"
},
{
"name": "instruments",
"type": {
"type": "array",
"items": "string"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment