Skip to content

Instantly share code, notes, and snippets.

@rishav-rohit
Created February 18, 2014 11:32
Show Gist options
  • Save rishav-rohit/9069274 to your computer and use it in GitHub Desktop.
Save rishav-rohit/9069274 to your computer and use it in GitHub Desktop.
{
"namespace": "com.rishav.avro",
"type": "record",
"name": "StudentActivity",
"fields": [
{
"name": "id",
"type": "string"
},
{
"name": "student_id",
"type": "int"
},
{
"name": "age",
"type": ["null", "int"],
"default": null
},
{
"name": "course_details",
"type": {
"name": "Activity",
"type": "record",
"fields": [
{
"name": "course_id",
"type": "int"
},
{
"name": "enroll_date",
"type": "string"
},
{
"name": "verb",
"type": "string"
},
{
"name": "score",
"type": "double",
"aliases": ["result_score"]
}
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment