aboutsummaryrefslogtreecommitdiff
path: root/examples/src/main/resources/user.avsc
blob: 4995357ab3736e8392f9d6a10775dfd42c91594b (plain) (blame)
1
2
3
4
5
6
7
8
{"namespace": "example.avro",
 "type": "record",
 "name": "User",
 "fields": [
     {"name": "name", "type": "string"},
     {"name": "favorite_color", "type": ["string", "null"]}
 ]
}