mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-10 23:11:01 +00:00
14 lines
657 B
JSON
14 lines
657 B
JSON
{
|
|
"namespace": "org.test",
|
|
"type": "record",
|
|
"name": "id_keys",
|
|
"doc": "All supported avro types and property variations",
|
|
"fields": [
|
|
{"name": "pk", "type": "int", "mutex": true, "fieldType": "id"},
|
|
{"name": "string_string", "type": ["string", "null"], "mutex": true },
|
|
{"name": "stringset_stringarray", "type": [{"type": "array", "items": "string"}, "null"]},
|
|
{"name": "idset_longarray", "type": [{"type": "array", "items": "long"}, "null"], "fieldType": "id"},
|
|
{"name": "int_int", "type": ["int", "null"], "fieldType": "int"},
|
|
{"name": "bool_bool", "type": ["boolean", "null"]}
|
|
]
|
|
}
|