Dynamic Value References Not Working

aseufert
New Contributor III

I can't get the dynamic value references to work in my jobs. I can use the deprecate references (e.g. job_id) but not the new references (e.g. job.id). As a test, I set a text widget called MyJobID following the example that will receive the dynamic value reference but cannot get the new references mentioned in the article to work.

This works and renders "my-job-123456":

{
  "MyJobID": "my-job-{{job_id}}"
}

While this does not and renders "my-job-{{job.id}}":

{
  "MyJobID": "my-job-{{job.id}}"
}

 I'm just using this as a simple test. What I'm really hoping to do is to use dynamic references to send task context from an upstream task dynamically, similar to the example of {{tasks.Get_user_data.values.name}} mentioned in the share task context article , but I can't even get a basic example working first.

Am I using these wrong? Why aren't the dynamic references getting interpolating into the widget?