Virtual Parameters for WLAN Stations (array?)

Hello,

I need to create a VirtualParameter but with a similar depth structure to the WLAN table of the router (for example) to be able to synchronize the different ONT models according to manufacturer in a single VirtualParameter to list connected devices and to be able to show it in the device view.

For example now:

- label: "'Clientes asociados a 5Ghz'"
  parameter: InternetGatewayDevice.LANDevice.1.WLANConfiguration.5.AssociatedDevice
  type: "'parameter-table'"
  childParameters:
    - label: "'IP'"
      parameter: AssociatedDeviceIPAddress
    - label: "'Dirección MAC'"
      parameter: AssociatedDeviceMACAddress
    - label: "'Fabricante'"
      parameter: MACVENDOR(AssociatedDeviceMACAddress)
    - label: "'Señal'"
      parameter: X_TRI_AssociatedDeviceRSSI
    - label: "'TX'"
      parameter: LastDataTransmitRate

Then have a VirtualParameters that allows something like this:

VirtualParameters.WLAN5G.1.IP
VirtualParameters.WLAN5G.1.MAC
VirtualParameters.WLAN5G.1.Vendor
VirtualParameters.WLAN5G.1.Signal
VirtualParameters.WLAN5G.1.TXRate
VirtualParameters.WLAN5G.2.IP
VirtualParameters.WLAN5G.2.MAC
VirtualParameters.WLAN5G.2.Vendor
VirtualParameters.WLAN5G.2.Signal
VirtualParameters.WLAN5G.2.TXRate
(...)

Is this possible or a VirtualParameter not have depth?

Not possible. What you can do is serialize/deserialize JSON and store it in the vparam. I do that for all the CPE diagnostic information (tr143 tests).