|  Developer
Updated on May 5, 2022

dictionary.array_association

  • Key is a string in the format “[channelId]_[groupId]”, value is a list of nodes, that have been added to the association group. (ZWave specific)
Name Type Required Description
targetNode int + An identifier of the node, that is added to group
targetChannel int Groupd node’s channel identifier

Example:

				
					{
    ...
    "valueType": "dictionary",
    "elementType": "array.association",
    "value": {
        "0_0": [
            {
                "targetNode": 10,
                "targetChannel": 1
            },
            {
                "targetNode": 13
            },
            {
                "targetNode": 10
            }
        ],
        "0_1": [
            ...
        ]
    }
    ...
}