When creating Jsonix (2.x) mapping files from xsd schema it captures enumerations and all the acceptable values, e.g.
{
type: 'enumInfo',
localName: 'TrackAdvanceNotificationStatusType',
baseTypeInfo: 'String',
values: ['BACK_ON_TRACK', 'FAIL']
}
Is there any way I can conveniently leverage these enumeration values from within my javascript code, or are they meant for Jsonix internal use only?