Last active
September 14, 2020 13:36
-
-
Save MazizEsa/ddf484eaec910de12bde93f5108bc870 to your computer and use it in GitHub Desktop.
Flat Schema Source
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
{ | |
"namespace": "org.maz.schema", | |
"type": "record", | |
"name": "FlatSampleData", | |
"fields": [ | |
{ | |
"name": "FlatSampleData", | |
"type": { | |
"avro.java.string": "String", | |
"type": "string" | |
}, | |
"default": "" | |
}, | |
{ | |
"name": "flatEnumSample", | |
"type": { | |
"type": "enum", | |
"name": "FlatEnumerationSample", | |
"symbols": [ | |
"SAMPLE1", | |
"SAMPLE2", | |
"SAMPLE3" | |
] | |
}, | |
"default": "SAMPLE1" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment