Multiple jsonnode in a rest api call

Hi
i have a CMI from technische Alternative and i m trying to read the values from it with this tutorial:
https://community.home-assistant.io/t/controlling-the-uvr1611-with-cmi-via-home-assistant/550802
i have in total 5 nodes + the CMI
if i do it like shown below it works but i get only 4 sensor values, is there a problem in the syntax? or do i make another mistake? is it possible to call more then one jsonnode?

here is the jsonapi description:
https://www.ta.co.at/download/datei/1751/

rest:
  - authentication: basic
    username: "****"
    password: "****"
    scan_interval: 30
    resource: http://****:****@192.168.1.252/INCLUDE/api.cgi?jsonnode=1,2,3,4,5&jsonparam=I,O,Na,Nd
    sensor:
      - name: "cmi_og_1"
        value_template: '{{ value_json.cmi_og_1 }}'
        json_attributes:
          - "Header"
          - "Data"
          - "Status"