summaryrefslogtreecommitdiffstats
path: root/qemu/tests/qapi-schema/flat-union-base-union.json
blob: 6a8ea687a9ea13d42c2ce1344962673d364e3e73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# we require the base to be a struct
{ 'enum': 'TestEnum',
  'data': [ 'value1', 'value2' ] }
{ 'struct': 'TestTypeA',
  'data': { 'string': 'str' } }
{ 'struct': 'TestTypeB',
  'data': { 'integer': 'int' } }
{ 'union': 'UnionBase',
  'data': { 'kind1': 'TestTypeA',
            'kind2': 'TestTypeB' } }
{ 'union': 'TestUnion',
  'base': 'UnionBase',
  'discriminator': 'type',
  'data': { 'kind1': 'TestTypeA',
            'kind2': 'TestTypeB' } }