]> git.proxmox.com Git - mirror_qemu.git/blob - tests/qapi-schema/flat-union-incomplete-branch.json
qapi: Back out doc comments added just to please qapi.py
[mirror_qemu.git] / tests / qapi-schema / flat-union-incomplete-branch.json
1 # we require all branches of the union to be covered
2 { 'enum': 'TestEnum',
3 'data': [ 'value1', 'value2' ] }
4 { 'struct': 'TestTypeA',
5 'data': { 'string': 'str' } }
6 { 'union': 'TestUnion',
7 'base': { 'type': 'TestEnum' },
8 'discriminator': 'type',
9 'data': { 'value1': 'TestTypeA' } }