aboutsummaryrefslogtreecommitdiff
path: root/tests/qapi-schema/flat-union-string-discriminator.json
blob: 47a17d2e4acec5509ea112f32c90ef69aee07bee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
##
# @TestEnum:
##
{ 'enum': 'TestEnum',
  'data': [ 'value1', 'value2' ] }

##
# @TestBase:
##
{ 'struct': 'TestBase',
  'data': { 'enum1': 'TestEnum', 'kind': 'str' } }

##
# @TestTypeA:
##
{ 'struct': 'TestTypeA',
  'data': { 'string': 'str' } }

##
# @TestTypeB:
##
{ 'struct': 'TestTypeB',
  'data': { 'integer': 'int' } }

##
# @TestUnion:
##
{ 'union': 'TestUnion',
  'base': 'TestBase',
  'discriminator': 'kind',
  'data': { 'kind1': 'TestTypeA',
            'kind2': 'TestTypeB' } }