summaryrefslogtreecommitdiff
path: root/tests/qapi-schema/flat-union-invalid-branch-key.json
blob: a6242823ed22cea9e6673e955ac8d4413cd24845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 'enum': 'TestEnum',
  'data': [ 'value1', 'value2' ] }

{ 'type': 'TestBase',
  'data': { 'enum1': 'TestEnum' } }

{ 'type': 'TestTypeA',
  'data': { 'string': 'str' } }

{ 'type': 'TestTypeB',
  'data': { 'integer': 'int' } }

{ 'union': 'TestUnion',
  'base': 'TestBase',
  'discriminator': 'enum1',
  'data': { 'value_wrong': 'TestTypeA',
            'value2': 'TestTypeB' } }