featurebase/idk/kafka/testdata/schemas/unions.json
2022-09-02 13:23:39 -07:00

12 lines
444 B
JSON

{
"type": "record",
"namespace": "com.example",
"name": "FullName",
"fields": [
{ "name": "first", "type": ["null", "string"]},
{ "name": "second", "type": ["null", "boolean"]},
{ "name": "third", "type": ["null", "long"]},
{ "name": "fourth", "type": ["null", {"type": "bytes", "logicalType": "decimal", "scale": 3, "precision": 8}]},
{ "name": "fifth", "type": ["null", {"type": "double", "scale": 2}]}
]
}