Multiple asterisk wildcard parameter problem

Does it support render multiply asterisk path like below, or it’s a limitation.

If i was to capture like below case

"Device.WiFi.Data.Network.Device.1.Radio.1.BSS.1.SSID" : "test-1", "Device.WiFi.Data.Network.Device.1.Radio.2.BSS.1.SSID" : "test-2"

If i add this into devices page

Device.WiFi.Data.Network.Device.*.Radio.*BSS.*.SSID

it will not be able to render result when i add multiple asterisk

- element: "'div'"
  type: "'container'"
  components:
    - element: "'h3'"
      type: "'container'"
      components:
        - "'Wi-Fi Data SSID'"
        - label: "'Summon'"
          type: "'summon-button'"
          parameters:
			- Device.WiFi.Data.Network.Device.*.Radio.*.BSS.*.SSID
- parameter: WiFi.Data.Network.Device.*.Radio.*.BSS.*.SSID
  type: "'parameter-table'"
  childParameters:
    - label: "'SSID'"
      parameter: SSID

but if i use single asterisk it’s able to render properly

.....
parameters:
  - Device.WiFi.Data.Network.Device.*.ID
- parameter: Device.WiFi.Data.Network.Device
  type: "'parameter-table'"
  childParameters:
    - label: "'ID'"
      parameter: ID

do any one have any idea to solve this , else i have to assign a fixed path.