I am trying to understand how Google Tag Manager matches variables to fields in the objects pushed to the dataLayer. When it's a top level field, it is straightforward. However, how does one do matching when I want to push something like this:
dataLayer.push({
'subcontainer': {
'variable': true
}
}
Would I match subcontainer.variable (which seems like the obvious way)? I couldn't find documentation for this, maybe someone could point me to something that explains this.