Tag Expression Binding - Noob Alert

I have a UDT with the elements shown at the bottom of this picture. I am using a view parameter with a path to my UDT instance. It returns a dictionary of my UDT instance, which is cool.

I would like for the result of this expression to be only the value form the "Description" key. In this case the desired return would be "LH Table Top". Can anyone help me with determine the correct expression syntax?

Thank you

I believe you should be using an indirect tag binding for this. Something like {udt_path}/Description.

Though if you're using other tags from that same UDT in other parts of that view, I'd bind the whole thing to a custom property, then reference those

I can confirm that that {view.params.tag}/Description does not work.

I do plan to use other UDT elements in this view.

That's not what you're using.

Thank you King