mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 17:15:56 +00:00
12 lines
444 B
JSON
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}]}
|
|
]
|
|
}
|