FEEL

path access (.)

FEEL language construct

context.entryName

The dot operator reads an entry out of a context and chains for nested structures. Reading an entry that does not exist yields null rather than an error, which is why a typo in a path silently collapses a decision to null instead of failing loudly.

Syntax elements

ElementTypeDescription
entryNamenamethe entry to read; unknown entries yield null

Examples

{a: {b: 7}}.a.b
{a: 1}.b
{customer: {name: "Anna"}}.customer.name
date and time("2026-07-01T10:30:00").hour

Related constructs

context literal {…} · list projection (path on a list) · null and error propagation

Related functions

get value · get entries

Defined by the OMG DMN 1.6 specification, chapter 10.3 (the FEEL grammar and semantics).