gogen-avro.v4 --package=avropackage ./ avropackage/someavro.avsc
{
"name": "Food",
"type": "record",
"namespace": "acme.food",
"fields": [
{
"name": "type",
"type": {
"name": "FoodKind",
"type": "enum",
"symbols": ["FRUIT", "VEGETABLE"]
},
"doc": "What kind of fruit"
},
{
"name": "nullableEnum",
"type": [
{
"name": "SomeNullableEnumType",
"type": "enum",
"symbols": [
"A",
"B"
]
},
"null"
]
}
}
{
"name": "fruits",
"type": {
"type": "array",
"items": "somepackage.Fruit"
}
}
avro commands, avro bookmarks, avro examples