1 # a union base type must be a struct
2 { 'struct': 'TestTypeA',
3 'data': { 'string': 'str' } }
5 { 'struct': 'TestTypeB',
6 'data': { 'integer': 'int' } }
8 { 'union': 'TestUnion',
10 'discriminator': 'int',
11 'data': { 'value1': 'TestTypeA',
12 'value2': 'TestTypeB' } }