mirror of
https://github.com/microsoft/HybridRow.git
synced 2026-01-21 02:13:18 +00:00
Release 1.1.0-preview 3 (#6)
Release roll-up snapshot of C#/C++ codebase at version 1.1.0-preview. This release matches the current shipping nugets.
This commit is contained in:
26
experimental/java/test-data/NullableSchema.json
Normal file
26
experimental/java/test-data/NullableSchema.json
Normal file
@@ -0,0 +1,26 @@
|
||||
// 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" } }
|
||||
}
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user