mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-11 07:11:02 +00:00
27 lines
986 B
JSON
27 lines
986 B
JSON
{
|
|
"namespace": "org.test",
|
|
"type": "record",
|
|
"name": "delete_value_schema",
|
|
"doc": "All supported avro types and property variations",
|
|
"delete": "values",
|
|
"fields": [
|
|
{"name": "_id", "type": ["string", "int"]},
|
|
{"name": "stringset_string", "type": ["string", "null"]},
|
|
{"name": "string_string", "type": ["string", "null"]},
|
|
{"name": "stringset_stringarray", "type": [{"type": "array", "items": "string"}, "null"]},
|
|
{"name": "idset_int", "type": ["int", "null"]},
|
|
{"name": "id_int", "type": ["int", "null"]},
|
|
{"name": "idset_intarray", "type": [{"type": "array", "items": "int"}, "null"]},
|
|
{"name": "int_long", "type": "boolean"},
|
|
{"name": "decimal_double", "type": "boolean"},
|
|
{"name": "dateint_bytes_ts", "type": "boolean"},
|
|
{"name": "bools", "type": [{"type": "array", "items": "string"}, "null"]},
|
|
{"name": "timestamp_bytes_int", "type": "boolean"}
|
|
]
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|