Skip to content

Instantly share code, notes, and snippets.

@1ambda
Created December 23, 2021 23:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 1ambda/75474e4f2fb2f3e3aced3de6e3667c4f to your computer and use it in GitHub Desktop.
Save 1ambda/75474e4f2fb2f3e3aced3de6e3667c4f to your computer and use it in GitHub Desktop.
# property.avsc
{
"namespace": "io.github.1ambda.avro",
"type": "record",
"name": "Property",
"fields": [
{
"name": "name",
"type": "string"
},
{
"name": "description",
"type": "string"
},
{
"name": "property_id",
"type": "long"
},
{
"name": "price",
"type": "double"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment