Visualizer parsing through key-value pairs

I have a response.

   ` {
        "pointId": "tt1.simulationtag0000001",
        "pointValues": {
            "1571657850000000000": 61650.0,
            "1571658120000000000": 61920.0
        }
    }`

I want to render it as a table in Visualizer.

    {{#each pointValues}}
          <tr id=row_{{@key}}>
                  <td id={{@key}}>{{@key}}</td>
                  <td>{{@value}}</td>
          </tr>
    {{/each}}

I get @key value properly but @value does not seem to work to get the value of the key-value pairs.

Answering my own question. Just {{@this}} worked.