Skip to content

Instantly share code, notes, and snippets.

@rishav-rohit
Last active August 29, 2015 13:56
Show Gist options
  • Save rishav-rohit/9066050 to your computer and use it in GitHub Desktop.
Save rishav-rohit/9066050 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": "university_id",
"type": "int"
},
{
"name": "course_details",
"type": {
"name": "Activity",
"type": "record",
"fields": [
{
"name": "course_id",
"type": "int"
},
{
"name": "enroll_date",
"type": "string"
},
{
"name": "verb",
"type": "string"
},
{
"name": "result_score",
"type": "double"
}
]
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment