13 lines
387 B
JSON
13 lines
387 B
JSON
|
# flat unions require a base
|
||
|
# TODO: simple unions should be able to use an enum discriminator
|
||
|
{ 'struct': 'TestTypeA',
|
||
|
'data': { 'string': 'str' } }
|
||
|
{ 'struct': 'TestTypeB',
|
||
|
'data': { 'integer': 'int' } }
|
||
|
{ 'enum': 'Enum',
|
||
|
'data': [ 'value1', 'value2' ] }
|
||
|
{ 'union': 'TestUnion',
|
||
|
'discriminator': 'Enum',
|
||
|
'data': { 'value1': 'TestTypeA',
|
||
|
'value2': 'TestTypeB' } }
|