14 lines
326 B
JSON
14 lines
326 B
JSON
# we reject unions without discriminator
|
|
{ 'struct': 'TestTypeA',
|
|
'data': { 'string': 'str' } }
|
|
|
|
{ 'struct': 'TestTypeB',
|
|
'data': { 'integer': 'int' } }
|
|
|
|
{ 'struct': 'Base',
|
|
'data': { 'string': 'str' } }
|
|
|
|
{ 'union': 'TestUnion',
|
|
'base': 'Base',
|
|
'data': { 'value1': 'TestTypeA',
|
|
'value2': 'TestTypeB' } }
|