summaryrefslogblamecommitdiffstats
path: root/tests/qapi-schema/union-no-base.json
blob: f6fe12da3bd4d049ddcc7d13f774166483723eaa (plain) (tree)
1
2
3
4
5
6
7
8
9
                       
                        
                               
                        
                                

                                  
                       
                          

                                     
# unions require a base
{ 'struct': 'TestTypeA',
  'data': { 'string': 'str' } }
{ 'struct': 'TestTypeB',
  'data': { 'integer': 'int' } }
{ 'enum': 'Enum',
  'data': [ 'value1', 'value2' ] }
{ 'union': 'TestUnion',
  'discriminator': 'Enum',
  'data': { 'value1': 'TestTypeA',
            'value2': 'TestTypeB' } }