Skip to content

Instantly share code, notes, and snippets.

@rkpattnaik780
Created May 23, 2022 18:30
Show Gist options
  • Save rkpattnaik780/98dce25ce606edf46fdef80c4b6ffc36 to your computer and use it in GitHub Desktop.
Save rkpattnaik780/98dce25ce606edf46fdef80c4b6ffc36 to your computer and use it in GitHub Desktop.
Avro for tweet objects
{
"type" : "record",
"name" : "Tweet",
"fields" : [
{
"name" : "user",
"type" : "string"
},
{
"name" : "text",
"type" : "string"
},
{
"name" : "createdAt",
"type" : "string"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment