flow2schema/tests/samples/unions.json

51 lines
1.2 KiB
JSON
Raw Normal View History

2017-11-05 02:40:46 +03:00
{
"schemas": [
{
"type": "record",
"name": "Type",
"namespace": "unions",
"fields": [
{
"name": "a",
"type": ["string", "double"]
},
{
"name": "b",
"type": ["null", "string"]
}
]
},
{
"type": "record",
"name": "Interface",
"namespace": "unions",
"fields": [
{
"name": "a",
"type": ["string", "double"]
},
{
"name": "b",
"type": ["null", "string"]
}
]
},
{
"type": "record",
"name": "Class",
"namespace": "unions",
"fields": [
{
"name": "a",
"type": ["string", "double"]
},
{
"name": "b",
"type": ["null", "string"]
}
]
}
2017-11-05 12:28:10 +03:00
],
2017-11-09 12:10:21 +03:00
"taskCount": 5
2017-11-05 02:40:46 +03:00
}