mirror of
https://github.com/microsoft/HybridRow.git
synced 2025-06-07 17:00:05 +01:00
Release roll-up snapshot of C#/C++ codebase at version 1.1.0-preview. This release matches the current shipping nugets.
27 lines
824 B
JSON
27 lines
824 B
JSON
// Demo schema that utilizes nullable typed scopes.
|
|
{
|
|
"schemas": [
|
|
{
|
|
"name": "Nullables",
|
|
"id": 1,
|
|
"type": "schema",
|
|
"properties": [
|
|
{ "path": "nullbool", "type": { "type": "array", "items": { "type": "bool" } } },
|
|
{ "path": "nullset", "type": { "type": "set", "items": { "type": "utf8" } } },
|
|
{ "path": "nullarray", "type": { "type": "array", "items": { "type": "float32" } } },
|
|
{
|
|
"path": "nulltuple",
|
|
"type": {
|
|
"type": "array",
|
|
"items": { "type": "tuple", "nullable": false, "items": [{ "type": "int32" }, { "type": "int64" }] }
|
|
}
|
|
},
|
|
{
|
|
"path": "nullmap",
|
|
"type": { "type": "map", "keys": { "type": "guid" }, "values": { "type": "uint8" } }
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|