vfio: remove a duplicated word in comments
[qemu/ar7.git] / tests / qapi-schema / flat-union-string-discriminator.json
blob47a17d2e4acec5509ea112f32c90ef69aee07bee
1 ##
2 # @TestEnum:
3 ##
4 { 'enum': 'TestEnum',
5   'data': [ 'value1', 'value2' ] }
7 ##
8 # @TestBase:
9 ##
10 { 'struct': 'TestBase',
11   'data': { 'enum1': 'TestEnum', 'kind': 'str' } }
14 # @TestTypeA:
16 { 'struct': 'TestTypeA',
17   'data': { 'string': 'str' } }
20 # @TestTypeB:
22 { 'struct': 'TestTypeB',
23   'data': { 'integer': 'int' } }
26 # @TestUnion:
28 { 'union': 'TestUnion',
29   'base': 'TestBase',
30   'discriminator': 'kind',
31   'data': { 'kind1': 'TestTypeA',
32             'kind2': 'TestTypeB' } }