Skip to content

Instantly share code, notes, and snippets.

@abdolence
Last active February 11, 2020 22:15
Show Gist options
  • Save abdolence/c5f9276a739be0a31d7a777d8ce0110e to your computer and use it in GitHub Desktop.
Save abdolence/c5f9276a739be0a31d7a777d8ce0110e to your computer and use it in GitHub Desktop.
// FizzBuzzNumber.avsc
{
"namespace": "fizzbuzz",
"type": "record",
"name": "FizzBuzzNumber",
"fields":[
{
"name": "value",
"type": {
"type": "int"
}
}
]
}
// FizzBuzzResult.avsc
{
"namespace": "fizzbuzz",
"type": "record",
"name": "FizzBuzzResult",
"fields": [
{
"name": "input",
"type": {
"type": "int"
}
},
{
"name": "value",
"type": {
"type": "string"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment