Last active
July 20, 2019 22:34
-
-
Save dalelane/79508e000fff74f7225b9d14e90521d4 to your computer and use it in GitHub Desktop.
Example of an Avro schema - used in https://dalelane.co.uk/blog/?p=3781
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": "Type3", | |
| "namespace": "co.uk.dalelane", | |
| "fields": [ | |
| { | |
| "name": "direction", | |
| "type": { | |
| "type": "enum", | |
| "name": "Compass", | |
| "namespace": "co.uk.dalelane", | |
| "symbols": [ | |
| "NORTH", "SOUTH", "EAST", "WEST" | |
| ] | |
| } | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment