18 lines
408 B
JSON
18 lines
408 B
JSON
|
{ 'enum': 'TestEnum',
|
||
|
'data': [ 'value1', 'value2' ] }
|
||
|
|
||
|
{ 'struct': 'TestBase',
|
||
|
'data': { 'enum1': { 'type': 'TestEnum', 'if': 'FOO' } } }
|
||
|
|
||
|
{ 'struct': 'TestTypeA',
|
||
|
'data': { 'string': 'str' } }
|
||
|
|
||
|
{ 'struct': 'TestTypeB',
|
||
|
'data': { 'integer': 'int' } }
|
||
|
|
||
|
{ 'union': 'TestUnion',
|
||
|
'base': 'TestBase',
|
||
|
'discriminator': 'enum1',
|
||
|
'data': { 'value1': 'TestTypeA',
|
||
|
'value2': 'TestTypeB' } }
|