Created
July 22, 2021 21:07
-
-
Save feliperazeek/ea53a0df89745bf65704f608fed804bc to your computer and use it in GitHub Desktop.
This file contains 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" : "twitter_schema", | |
"namespace" : "foo.bar", | |
"fields" : [ { | |
"name" : "username", | |
"type" : "string", | |
"doc" : "Name of the user account on Twitter.com" | |
}, { | |
"name" : "tweet", | |
"type" : "string", | |
"doc" : "The content of the users Twitter message" | |
}, { | |
"name" : "timestamp", | |
"type" : "long", | |
"doc" : "Unix epoch time in seconds" | |
} ], | |
"doc:" : "A basic schema for storing Twitter messages" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment