Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following new or modificated operators are provided in keyvalue feature.

KeyValueToTuple (Deprecated, use ToTuple instead.)

Transforms key-value object to tuples. Use the SCHEMA attribute to define:

...

Code Block
          ['$','root','KeyValueObject'],
          ['monday', 'List(Integer)'],
          ['$..monday.length()','MondaySize','mondayCount','Integer'],
          ['$.uuid', 'String'],
          ['$.monday[0]',MondayFirst, 'Integer'],

...


WIth the type field you can set the type of the tuple.

...