Skip to content

Instantly share code, notes, and snippets.

@talfco
Last active May 21, 2020 07:08
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 talfco/37038c4c68d1c3efafb81b7f25489144 to your computer and use it in GitHub Desktop.
Save talfco/37038c4c68d1c3efafb81b7f25489144 to your computer and use it in GitHub Desktop.
A simple schema for a Avro Message
{ "namespace": "business.model.strategy",
"type": "record",
"doc" : "A simple Avro example schema",
"name": "Person",
"fields": [
{ "name": "personid", "type": "long",
"name": "lastname", "type": "string",
"name": "surname", "type": [ "null", { "type": "string" }],"default": null}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment