xref: /openbmc/qemu/tests/qapi-schema/union-base-empty.json (revision de8ed1055c2ce18c95f597eb10df360dcb534f99)
1# Union with empty base and therefore without discriminator
2
3{ 'struct': 'Empty', 'data': { } }
4
5{ 'union': 'TestUnion',
6  'base': 'Empty',
7  'discriminator': 'type',
8  'data': { 'value1': 'int',
9            'value2': 'str' } }
10