How to specify facts_cache structure for multi level variables?

I am trying to create a new hosts column using the column_view plugin and it says you can use something like: https://github.com/theforeman/foreman_column_view

:content: facts_hash['architecture']

What if wanted to use a fact that is nested in an array like one::two::three ?

doing this does not seem to work

:content: facts_hash['one::two::three']

Figured it out…

:content: facts['one::two::three']

instead of facts_hash.