get entries

FEEL built-in function · Context functions

get entries(context)

Returns the context as a list of {key, value} pairs, enabling iteration over entries.

Parameters

ParameterTypeDescription
contextcontextthe context to expand

Examples

get entries({foo: 123, bar: 456})
[{key=foo, value=123}, {key=bar, value=456}] Try it →

Related functions

get value · context

Defined by the OMG DMN 1.6 specification, chapter 10.3.4 (built-in functions).