context

FEEL built-in function · Context functions

context(entries)

Builds a context from a list of {key, value} pairs, the inverse of get entries.

Parameters

ParameterTypeDescription
entrieslist of contextsa list of {key, value} pairs

Examples

context([{key: "a", value: 1}, {key: "b", value: 2}])
{a=1, b=2} Try it →

Related functions

get entries · context put · context merge

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