mirror of
https://github.com/microsoft/HybridRow.git
synced 2026-01-21 10:23:13 +00:00
29 lines
624 B
JSON
29 lines
624 B
JSON
// Tagged demo schema that utilizes tagged types.
|
|
{
|
|
"schemas": [
|
|
{
|
|
"name": "TaggedApi",
|
|
"id": 1,
|
|
"type": "schema",
|
|
"properties": [
|
|
{
|
|
"path": "tag1",
|
|
"type": {
|
|
"type": "tagged",
|
|
"immutable": true,
|
|
"items": [{ "type": "utf8", "nullable": false }]
|
|
}
|
|
},
|
|
{
|
|
"path": "tag2",
|
|
"type": {
|
|
"type": "tagged",
|
|
"immutable": false,
|
|
"items": [{ "type": "int32", "nullable": false }, { "type": "int64", "nullable": false }]
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|