Created
May 23, 2022 18:30
-
-
Save rkpattnaik780/98dce25ce606edf46fdef80c4b6ffc36 to your computer and use it in GitHub Desktop.
Avro for tweet objects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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