Google Vision Data in an Editable Grid

Certified Associate Developer

I am trying to pass in the Label Annotations from a Google Vision connected system into an editable grid. When I use the attached code, fv!item.description and fv!item.score returns the data as a single list of string as opposed to the 10 independent dictionary items. How can I correct this? 

rows: {
        a!forEach(
          items: local!gvLabels,
          expression: a!gridRowLayout(
            contents: {
              a!textField(
                value: fv!item.description
              ),
              a!textField(
                value: fv!item.score
              )
            }
          )
        )
      },    

  Discussion posts and replies are publicly visible