Bind Tag Folder to Perspective View Property

How can a bind a tag folder (folder contents) to a Perspective view property binding? Some how I ran across how you can add .jsonValues to the end of the tag path, but for some reason that returns the object starting all they way up the tag tree path.

For instance I have a folder structure like this

/Sessions
/Sessions/username
/Sessions/username/functionButtons
/Sessions/username/functionButtons/0
/Sessions/username/functionButtons/1
/Sessions/username/functionButtons/2

where 0, 1, and 2 are instances of a UDT. I want to bind the functionButtons folder so I can have all the instances of the buttons as props on my Perspective view.

Right now if I bind functionButtons.jsonValues to myProp I get

myProp
username
functionButtons
0
label:“button1”
1
label:“button2”
2
label:“button3”

I do not want the extra folders username and functionButtons. I just want the instances 0, 1, and 2