11 lines
238 B
JSON
11 lines
238 B
JSON
|
{ 'type': 'TestTypeA',
|
||
|
'data': { 'string': 'str' } }
|
||
|
|
||
|
{ 'type': 'TestTypeB',
|
||
|
'data': { 'integer': 'int' } }
|
||
|
|
||
|
{ 'union': 'TestUnion',
|
||
|
'discriminator': 'enum1',
|
||
|
'data': { 'value1': 'TestTypeA',
|
||
|
'value2': 'TestTypeB' } }
|