avro-testing-schema-registry/app1/user.avsc

10 lines
259 B
Plaintext
Raw Normal View History

2022-08-11 15:12:20 +03:00
{
"namespace": "me.bvn13.test.avro.schema",
"type": "record",
"name": "User",
"fields": [
{"name": "name", "type": "string"},
{"name": "favorite_number", "type": ["int", "null"]},
{"name": "favorite_color", "type": ["string", "null"]}
]
}