diff --git a/homeassistant/components/matter/__init__.py b/homeassistant/components/matter/__init__.py index 6a11e5ded44..111e7c0ea96 100644 --- a/homeassistant/components/matter/__init__.py +++ b/homeassistant/components/matter/__init__.py @@ -5,12 +5,8 @@ import asyncio import async_timeout from matter_server.client import MatterClient -from matter_server.client.exceptions import ( - CannotConnect, - FailedCommand, - InvalidServerVersion, -) -from matter_server.common.models.error import MatterError +from matter_server.client.exceptions import CannotConnect, InvalidServerVersion +from matter_server.common.errors import MatterError, NodeCommissionFailed import voluptuous as vol from homeassistant.components.hassio import AddonError, AddonManager, AddonState @@ -211,31 +207,10 @@ def _async_init_services(hass: HomeAssistant) -> None: """Get node id from ha device id.""" dev_reg = dr.async_get(hass) device = dev_reg.async_get(ha_device_id) - if device is None: return None - - matter_id = next( - ( - identifier - for identifier in device.identifiers - if identifier[0] == DOMAIN - ), - None, - ) - - if not matter_id: - return None - - unique_id = matter_id[1] - - matter_client = get_matter(hass).matter_client - - # This could be more efficient - for node in await matter_client.get_nodes(): - if node.unique_id == unique_id: - return node.node_id - + if node := await get_node_from_device_entry(hass, device): + return node.node_id return None async def open_commissioning_window(call: ServiceCall) -> None: @@ -251,7 +226,7 @@ def _async_init_services(hass: HomeAssistant) -> None: try: await matter_client.open_commissioning_window(node_id) - except FailedCommand as err: + except NodeCommissionFailed as err: raise HomeAssistantError(str(err)) from err async_register_admin_service( diff --git a/homeassistant/components/matter/adapter.py b/homeassistant/components/matter/adapter.py index 9f8d1fe6c58..5bcec4b433d 100644 --- a/homeassistant/components/matter/adapter.py +++ b/homeassistant/components/matter/adapter.py @@ -4,12 +4,11 @@ from __future__ import annotations from typing import TYPE_CHECKING, cast from chip.clusters import Objects as all_clusters -from matter_server.common.models.events import EventType -from matter_server.common.models.node_device import ( +from matter_server.client.models.node_device import ( AbstractMatterNodeDevice, MatterBridgedNodeDevice, ) -from matter_server.common.models.server_information import ServerInfo +from matter_server.common.models import EventType, ServerInfoMessage from homeassistant.config_entries import ConfigEntry from homeassistant.const import Platform @@ -23,7 +22,7 @@ from .helpers import get_device_id if TYPE_CHECKING: from matter_server.client import MatterClient - from matter_server.common.models.node import MatterNode + from matter_server.client.models.node import MatterNode class MatterAdapter: @@ -70,15 +69,19 @@ class MatterAdapter: bridge_unique_id: str | None = None - if node.aggregator_device_type_instance is not None and ( - node.root_device_type_instance.get_cluster(all_clusters.BasicInformation) + if ( + node.aggregator_device_type_instance is not None + and node.root_device_type_instance is not None + and node.root_device_type_instance.get_cluster( + all_clusters.BasicInformation + ) ): # create virtual (parent) device for bridge node device bridge_device = MatterBridgedNodeDevice( node.aggregator_device_type_instance ) self._create_device_registry(bridge_device) - server_info = cast(ServerInfo, self.matter_client.server_info) + server_info = cast(ServerInfoMessage, self.matter_client.server_info) bridge_unique_id = get_device_id(server_info, bridge_device) for node_device in node.node_devices: @@ -90,7 +93,7 @@ class MatterAdapter: bridge_unique_id: str | None = None, ) -> None: """Create a device registry entry.""" - server_info = cast(ServerInfo, self.matter_client.server_info) + server_info = cast(ServerInfoMessage, self.matter_client.server_info) basic_info = node_device.device_info() device_type_instances = node_device.device_type_instances() diff --git a/homeassistant/components/matter/api.py b/homeassistant/components/matter/api.py index b1c2d9effb1..7b4b7d35b7f 100644 --- a/homeassistant/components/matter/api.py +++ b/homeassistant/components/matter/api.py @@ -5,7 +5,7 @@ from collections.abc import Callable from functools import wraps from typing import Any -from matter_server.client.exceptions import FailedCommand +from matter_server.common.errors import MatterError import voluptuous as vol from homeassistant.components import websocket_api @@ -44,7 +44,7 @@ def async_get_matter_adapter(func: Callable) -> Callable: def async_handle_failed_command(func: Callable) -> Callable: - """Decorate function to handle FailedCommand and send relevant error.""" + """Decorate function to handle MatterError and send relevant error.""" @wraps(func) async def async_handle_failed_command_func( @@ -54,11 +54,11 @@ def async_handle_failed_command(func: Callable) -> Callable: *args: Any, **kwargs: Any, ) -> None: - """Handle FailedCommand within function and send relevant error.""" + """Handle MatterError within function and send relevant error.""" try: await func(hass, connection, msg, *args, **kwargs) - except FailedCommand as err: - connection.send_error(msg[ID], err.error_code, err.args[0]) + except MatterError as err: + connection.send_error(msg[ID], str(err.error_code), err.args[0]) return async_handle_failed_command_func diff --git a/homeassistant/components/matter/binary_sensor.py b/homeassistant/components/matter/binary_sensor.py index 15ad13d25ad..ce5b7a10916 100644 --- a/homeassistant/components/matter/binary_sensor.py +++ b/homeassistant/components/matter/binary_sensor.py @@ -5,7 +5,7 @@ from dataclasses import dataclass from functools import partial from chip.clusters import Objects as clusters -from matter_server.common.models import device_types +from matter_server.client.models import device_types from homeassistant.components.binary_sensor import ( BinarySensorDeviceClass, @@ -39,8 +39,10 @@ class MatterBinarySensor(MatterEntity, BinarySensorEntity): @callback def _update_from_device(self) -> None: """Update from device.""" - cluster = self._device_type_instance.get_cluster(clusters.BooleanState) - self._attr_is_on = cluster.stateValue if cluster else None + self._attr_is_on = self.get_matter_attribute_value( + # We always subscribe to a single value + self.entity_description.subscribe_attributes[0], + ) class MatterOccupancySensor(MatterBinarySensor): @@ -51,9 +53,12 @@ class MatterOccupancySensor(MatterBinarySensor): @callback def _update_from_device(self) -> None: """Update from device.""" - cluster = self._device_type_instance.get_cluster(clusters.OccupancySensing) + value = self.get_matter_attribute_value( + # We always subscribe to a single value + self.entity_description.subscribe_attributes[0], + ) # The first bit = if occupied - self._attr_is_on = cluster.occupancy & 1 == 1 if cluster else None + self._attr_is_on = (value & 1 == 1) if value is not None else None @dataclass diff --git a/homeassistant/components/matter/device_platform.py b/homeassistant/components/matter/device_platform.py index 24e7f8b5dc4..35b5d40b6da 100644 --- a/homeassistant/components/matter/device_platform.py +++ b/homeassistant/components/matter/device_platform.py @@ -11,7 +11,7 @@ from .sensor import DEVICE_ENTITY as SENSOR_DEVICE_ENTITY from .switch import DEVICE_ENTITY as SWITCH_DEVICE_ENTITY if TYPE_CHECKING: - from matter_server.common.models.device_types import DeviceType + from matter_server.client.models.device_types import DeviceType from .entity import MatterEntityDescriptionBaseClass diff --git a/homeassistant/components/matter/diagnostics.py b/homeassistant/components/matter/diagnostics.py index 571523f7f0c..bcb41cc0462 100644 --- a/homeassistant/components/matter/diagnostics.py +++ b/homeassistant/components/matter/diagnostics.py @@ -4,7 +4,8 @@ from __future__ import annotations from copy import deepcopy from typing import Any -from matter_server.common.helpers.util import dataclass_to_dict +from chip.clusters import Objects +from matter_server.common.helpers.util import dataclass_to_dict, parse_attribute_path from homeassistant.components.diagnostics import REDACTED from homeassistant.config_entries import ConfigEntry @@ -13,16 +14,20 @@ from homeassistant.helpers import device_registry as dr from .helpers import get_matter, get_node_from_device_entry -ATTRIBUTES_TO_REDACT = {"chip.clusters.Objects.BasicInformation.Attributes.Location"} +ATTRIBUTES_TO_REDACT = {Objects.BasicInformation.Attributes.Location} def redact_matter_attributes(node_data: dict[str, Any]) -> dict[str, Any]: """Redact Matter cluster attribute.""" redacted = deepcopy(node_data) for attribute_to_redact in ATTRIBUTES_TO_REDACT: - for value in redacted["attributes"].values(): - if value["attribute_type"] == attribute_to_redact: - value["value"] = REDACTED + for attribute_path, _value in redacted["attributes"].items(): + _, cluster_id, attribute_id = parse_attribute_path(attribute_path) + if cluster_id != attribute_to_redact.cluster_id: + continue + if attribute_id != attribute_to_redact.attribute_id: + continue + redacted["attributes"][attribute_path] = REDACTED return redacted @@ -40,7 +45,7 @@ async def async_get_config_entry_diagnostics( """Return diagnostics for a config entry.""" matter = get_matter(hass) server_diagnostics = await matter.matter_client.get_diagnostics() - data = remove_serialization_type(dataclass_to_dict(server_diagnostics)) + data = dataclass_to_dict(server_diagnostics) nodes = [redact_matter_attributes(node_data) for node_data in data["nodes"]] data["nodes"] = nodes @@ -56,10 +61,8 @@ async def async_get_device_diagnostics( node = await get_node_from_device_entry(hass, device) return { - "server_info": remove_serialization_type( - dataclass_to_dict(server_diagnostics.info) - ), + "server_info": dataclass_to_dict(server_diagnostics.info), "node": redact_matter_attributes( - remove_serialization_type(dataclass_to_dict(node) if node else {}) + remove_serialization_type(dataclass_to_dict(node.node_data) if node else {}) ), } diff --git a/homeassistant/components/matter/entity.py b/homeassistant/components/matter/entity.py index 820d0f72846..4a0c8f6a603 100644 --- a/homeassistant/components/matter/entity.py +++ b/homeassistant/components/matter/entity.py @@ -7,10 +7,11 @@ from dataclasses import dataclass import logging from typing import TYPE_CHECKING, Any, cast -from matter_server.common.models.device_type_instance import MatterDeviceTypeInstance -from matter_server.common.models.events import EventType -from matter_server.common.models.node_device import AbstractMatterNodeDevice -from matter_server.common.models.server_information import ServerInfo +from chip.clusters.Objects import ClusterAttributeDescriptor +from matter_server.client.models.device_type_instance import MatterDeviceTypeInstance +from matter_server.client.models.node_device import AbstractMatterNodeDevice +from matter_server.common.helpers.util import create_attribute_path +from matter_server.common.models import EventType, ServerInfoMessage from homeassistant.core import callback from homeassistant.helpers.entity import DeviceInfo, Entity, EntityDescription @@ -20,7 +21,6 @@ from .helpers import get_device_id, get_operational_instance_id if TYPE_CHECKING: from matter_server.client import MatterClient - from matter_server.common.models.node import MatterAttribute LOGGER = logging.getLogger(__name__) @@ -59,19 +59,20 @@ class MatterEntity(Entity): self.entity_description = entity_description self._unsubscribes: list[Callable] = [] # for fast lookups we create a mapping to the attribute paths - # The server info is set when the client connects to the server. self._attributes_map: dict[type, str] = {} - server_info = cast(ServerInfo, self.matter_client.server_info) + # The server info is set when the client connects to the server. + server_info = cast(ServerInfoMessage, self.matter_client.server_info) # create unique_id based on "Operational Instance Name" and endpoint/device type self._attr_unique_id = ( f"{get_operational_instance_id(server_info, self._node_device.node())}-" - f"{device_type_instance.endpoint}-" + f"{device_type_instance.endpoint.endpoint_id}-" f"{device_type_instance.device_type.device_type}" ) node_device_id = get_device_id(server_info, node_device) self._attr_device_info = DeviceInfo( identifiers={(DOMAIN, f"{ID_TYPE_DEVICE_ID}_{node_device_id}")} ) + self._attr_available = self._node_device.node().available async def async_added_to_hass(self) -> None: """Handle being added to Home Assistant.""" @@ -79,19 +80,24 @@ class MatterEntity(Entity): # Subscribe to attribute updates. for attr_cls in self.entity_description.subscribe_attributes: - if matter_attr := self.get_matter_attribute(attr_cls): - self._attributes_map[attr_cls] = matter_attr.path - self._unsubscribes.append( - self.matter_client.subscribe( - self._on_matter_event, - EventType.ATTRIBUTE_UPDATED, - self._device_type_instance.node.node_id, - matter_attr.path, - ) + attr_path = self.get_matter_attribute_path(attr_cls) + self._attributes_map[attr_cls] = attr_path + self._unsubscribes.append( + self.matter_client.subscribe( + callback=self._on_matter_event, + event_filter=EventType.ATTRIBUTE_UPDATED, + node_filter=self._device_type_instance.node.node_id, + attr_path_filter=attr_path, ) - continue - # not sure if this can happen, but just in case log it. - LOGGER.warning("Attribute not found on device: %s", attr_cls) + ) + # subscribe to node (availability changes) + self._unsubscribes.append( + self.matter_client.subscribe( + callback=self._on_matter_event, + event_filter=EventType.NODE_UPDATED, + node_filter=self._device_type_instance.node.node_id, + ) + ) # make sure to update the attributes once self._update_from_device() @@ -104,6 +110,7 @@ class MatterEntity(Entity): @callback def _on_matter_event(self, event: EventType, data: Any = None) -> None: """Call on update.""" + self._attr_available = self._device_type_instance.node.available self._update_from_device() self.async_write_ha_state() @@ -113,13 +120,18 @@ class MatterEntity(Entity): """Update data from Matter device.""" @callback - def get_matter_attribute(self, attribute: type) -> MatterAttribute | None: - """Lookup MatterAttribute on device by providing the attribute class.""" - return next( - ( - x - for x in self._device_type_instance.attributes - if x.attribute_type == attribute - ), - None, + def get_matter_attribute_value( + self, attribute: type[ClusterAttributeDescriptor] + ) -> Any: + """Get current value for given attribute.""" + return self._device_type_instance.get_attribute_value(None, attribute) + + @callback + def get_matter_attribute_path( + self, attribute: type[ClusterAttributeDescriptor] + ) -> str: + """Return AttributePath by providing the endpoint and Attribute class.""" + endpoint = self._device_type_instance.endpoint.endpoint_id + return create_attribute_path( + endpoint, attribute.cluster_id, attribute.attribute_id ) diff --git a/homeassistant/components/matter/helpers.py b/homeassistant/components/matter/helpers.py index ef42f9354ca..994ab0ff80c 100644 --- a/homeassistant/components/matter/helpers.py +++ b/homeassistant/components/matter/helpers.py @@ -11,9 +11,9 @@ from homeassistant.helpers import device_registry as dr from .const import DOMAIN, ID_TYPE_DEVICE_ID if TYPE_CHECKING: - from matter_server.common.models.node import MatterNode - from matter_server.common.models.node_device import AbstractMatterNodeDevice - from matter_server.common.models.server_information import ServerInfo + from matter_server.client.models.node import MatterNode + from matter_server.client.models.node_device import AbstractMatterNodeDevice + from matter_server.common.models import ServerInfoMessage from .adapter import MatterAdapter @@ -37,7 +37,7 @@ def get_matter(hass: HomeAssistant) -> MatterAdapter: def get_operational_instance_id( - server_info: ServerInfo, + server_info: ServerInfoMessage, node: MatterNode, ) -> str: """Return `Operational Instance Name` for given MatterNode.""" @@ -49,7 +49,7 @@ def get_operational_instance_id( def get_device_id( - server_info: ServerInfo, + server_info: ServerInfoMessage, node_device: AbstractMatterNodeDevice, ) -> str: """Return HA device_id for the given MatterNodeDevice.""" diff --git a/homeassistant/components/matter/light.py b/homeassistant/components/matter/light.py index 5761d571259..a891870bbef 100644 --- a/homeassistant/components/matter/light.py +++ b/homeassistant/components/matter/light.py @@ -7,7 +7,7 @@ from functools import partial from typing import Any from chip.clusters import Objects as clusters -from matter_server.common.models import device_types +from matter_server.client.models import device_types from homeassistant.components.light import ( ATTR_BRIGHTNESS, @@ -85,15 +85,13 @@ class MatterLight(MatterEntity, LightEntity): def _supports_color_mode(self, color_feature: MatterColorControlFeatures) -> bool: """Return if device supports given color mode.""" - feature_map = self._device_type_instance.node.get_attribute( - self._device_type_instance.endpoint, - clusters.ColorControl, + feature_map = self.get_matter_attribute_value( clusters.ColorControl.Attributes.FeatureMap, ) - assert isinstance(feature_map.value, int) + assert isinstance(feature_map, int) - return self._supports_feature(feature_map.value, color_feature) + return self._supports_feature(feature_map, color_feature) def _supports_hs_color(self) -> bool: """Return if device supports hs color.""" @@ -176,7 +174,7 @@ class MatterLight(MatterEntity, LightEntity): assert level_control is not None - level = round( + level = round( # type: ignore[unreachable] renormalize( brightness, (0, 255), @@ -195,13 +193,17 @@ class MatterLight(MatterEntity, LightEntity): def _get_xy_color(self) -> tuple[float, float]: """Get xy color from matter.""" - x_color = self.get_matter_attribute(clusters.ColorControl.Attributes.CurrentX) - y_color = self.get_matter_attribute(clusters.ColorControl.Attributes.CurrentY) + x_color = self.get_matter_attribute_value( + clusters.ColorControl.Attributes.CurrentX + ) + y_color = self.get_matter_attribute_value( + clusters.ColorControl.Attributes.CurrentY + ) assert x_color is not None assert y_color is not None - xy_color = convert_to_hass_xy((x_color.value, y_color.value)) + xy_color = convert_to_hass_xy((x_color, y_color)) LOGGER.debug( "Got xy color %s for %s", xy_color, @@ -213,16 +215,18 @@ class MatterLight(MatterEntity, LightEntity): def _get_hs_color(self) -> tuple[float, float]: """Get hs color from matter.""" - hue = self.get_matter_attribute(clusters.ColorControl.Attributes.CurrentHue) + hue = self.get_matter_attribute_value( + clusters.ColorControl.Attributes.CurrentHue + ) - saturation = self.get_matter_attribute( + saturation = self.get_matter_attribute_value( clusters.ColorControl.Attributes.CurrentSaturation ) assert hue is not None assert saturation is not None - hs_color = convert_to_hass_hs((hue.value, saturation.value)) + hs_color = convert_to_hass_hs((hue, saturation)) LOGGER.debug( "Got hs color %s for %s", @@ -235,7 +239,7 @@ class MatterLight(MatterEntity, LightEntity): def _get_color_temperature(self) -> int: """Get color temperature from matter.""" - color_temp = self.get_matter_attribute( + color_temp = self.get_matter_attribute_value( clusters.ColorControl.Attributes.ColorTemperatureMireds ) @@ -243,11 +247,11 @@ class MatterLight(MatterEntity, LightEntity): LOGGER.debug( "Got color temperature %s for %s", - color_temp.value, + color_temp, self._device_type_instance, ) - return int(color_temp.value) + return int(color_temp) def _get_brightness(self) -> int: """Get brightness from matter.""" @@ -257,7 +261,7 @@ class MatterLight(MatterEntity, LightEntity): # We should not get here if brightness is not supported. assert level_control is not None - LOGGER.debug( + LOGGER.debug( # type: ignore[unreachable] "Got brightness %s for %s", level_control.currentLevel, self._device_type_instance, @@ -274,13 +278,13 @@ class MatterLight(MatterEntity, LightEntity): def _get_color_mode(self) -> ColorMode: """Get color mode from matter.""" - color_mode = self.get_matter_attribute( + color_mode = self.get_matter_attribute_value( clusters.ColorControl.Attributes.ColorMode ) assert color_mode is not None - ha_color_mode = COLOR_MODE_MAP[MatterColorMode(color_mode.value)] + ha_color_mode = COLOR_MODE_MAP[MatterColorMode(color_mode)] LOGGER.debug( "Got color mode (%s) for %s", ha_color_mode, self._device_type_instance @@ -292,7 +296,7 @@ class MatterLight(MatterEntity, LightEntity): """Send device command.""" await self.matter_client.send_device_command( node_id=self._device_type_instance.node.node_id, - endpoint=self._device_type_instance.endpoint, + endpoint_id=self._device_type_instance.endpoint_id, command=command, ) @@ -369,8 +373,9 @@ class MatterLight(MatterEntity, LightEntity): if supports_color_temperature: self._attr_color_temp = self._get_color_temperature() - if attr := self.get_matter_attribute(clusters.OnOff.Attributes.OnOff): - self._attr_is_on = attr.value + self._attr_is_on = self.get_matter_attribute_value( + clusters.OnOff.Attributes.OnOff + ) if supports_brightness: self._attr_brightness = self._get_brightness() diff --git a/homeassistant/components/matter/manifest.json b/homeassistant/components/matter/manifest.json index bf31b7eb68e..73863de5bdb 100644 --- a/homeassistant/components/matter/manifest.json +++ b/homeassistant/components/matter/manifest.json @@ -6,5 +6,5 @@ "dependencies": ["websocket_api"], "documentation": "https://www.home-assistant.io/integrations/matter", "iot_class": "local_push", - "requirements": ["python-matter-server==2.1.1"] + "requirements": ["python-matter-server==3.0.0"] } diff --git a/homeassistant/components/matter/sensor.py b/homeassistant/components/matter/sensor.py index 38a701e779a..d60d473b0be 100644 --- a/homeassistant/components/matter/sensor.py +++ b/homeassistant/components/matter/sensor.py @@ -4,12 +4,10 @@ from __future__ import annotations from collections.abc import Callable from dataclasses import dataclass from functools import partial -from typing import Any from chip.clusters import Objects as clusters from chip.clusters.Types import Nullable, NullValue -from matter_server.common.models import device_types -from matter_server.common.models.device_type_instance import MatterDeviceTypeInstance +from matter_server.client.models import device_types from homeassistant.components.sensor import ( SensorDeviceClass, @@ -53,13 +51,12 @@ class MatterSensor(MatterEntity, SensorEntity): def _update_from_device(self) -> None: """Update from device.""" measurement: Nullable | float | None - measurement = _get_attribute_value( - self._device_type_instance, + measurement = self.get_matter_attribute_value( # We always subscribe to a single value self.entity_description.subscribe_attributes[0], ) - if measurement is NullValue or measurement is None: + if measurement == NullValue or measurement is None: measurement = None else: measurement = self.entity_description.measurement_to_ha(measurement) @@ -67,29 +64,6 @@ class MatterSensor(MatterEntity, SensorEntity): self._attr_native_value = measurement -def _get_attribute_value( - device_type_instance: MatterDeviceTypeInstance, - attribute: clusters.ClusterAttributeDescriptor, -) -> Any: - """Return the value of an attribute.""" - # Find the cluster for this attribute. We don't have a lookup table yet. - cluster_cls: clusters.Cluster = next( - cluster - for cluster in device_type_instance.device_type.clusters - if cluster.id == attribute.cluster_id - ) - - # Find the attribute descriptor so we know the instance variable to fetch - attribute_descriptor: clusters.ClusterObjectFieldDescriptor = next( - descriptor - for descriptor in cluster_cls.descriptor.Fields - if descriptor.Tag == attribute.attribute_id - ) - - cluster_data = device_type_instance.get_cluster(cluster_cls) - return getattr(cluster_data, attribute_descriptor.Label) - - @dataclass class MatterSensorEntityDescriptionMixin: """Required fields for sensor device mapping.""" diff --git a/homeassistant/components/matter/switch.py b/homeassistant/components/matter/switch.py index f86a7cbb023..53ae25f8891 100644 --- a/homeassistant/components/matter/switch.py +++ b/homeassistant/components/matter/switch.py @@ -6,7 +6,7 @@ from functools import partial from typing import Any from chip.clusters import Objects as clusters -from matter_server.common.models import device_types +from matter_server.client.models import device_types from homeassistant.components.switch import ( SwitchDeviceClass, @@ -41,7 +41,7 @@ class MatterSwitch(MatterEntity, SwitchEntity): """Turn switch on.""" await self.matter_client.send_device_command( node_id=self._device_type_instance.node.node_id, - endpoint=self._device_type_instance.endpoint, + endpoint_id=self._device_type_instance.endpoint_id, command=clusters.OnOff.Commands.On(), ) @@ -49,15 +49,16 @@ class MatterSwitch(MatterEntity, SwitchEntity): """Turn switch off.""" await self.matter_client.send_device_command( node_id=self._device_type_instance.node.node_id, - endpoint=self._device_type_instance.endpoint, + endpoint_id=self._device_type_instance.endpoint_id, command=clusters.OnOff.Commands.Off(), ) @callback def _update_from_device(self) -> None: """Update from device.""" - cluster = self._device_type_instance.get_cluster(clusters.OnOff) - self._attr_is_on = cluster.onOff if cluster else None + self._attr_is_on = self.get_matter_attribute_value( + clusters.OnOff.Attributes.OnOff + ) @dataclass diff --git a/requirements_all.txt b/requirements_all.txt index dbee2a58739..146c699d4a5 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -2081,7 +2081,7 @@ python-kasa==0.5.1 # python-lirc==1.2.3 # homeassistant.components.matter -python-matter-server==2.1.1 +python-matter-server==3.0.0 # homeassistant.components.xiaomi_miio python-miio==0.5.12 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index 89ac8473c46..7cbaa577208 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -1480,7 +1480,7 @@ python-juicenet==1.1.0 python-kasa==0.5.1 # homeassistant.components.matter -python-matter-server==2.1.1 +python-matter-server==3.0.0 # homeassistant.components.xiaomi_miio python-miio==0.5.12 diff --git a/tests/components/matter/common.py b/tests/components/matter/common.py index 92a4cd4c8f1..7582b9c415d 100644 --- a/tests/components/matter/common.py +++ b/tests/components/matter/common.py @@ -6,9 +6,9 @@ import json from typing import Any from unittest.mock import MagicMock +from matter_server.client.models.node import MatterNode from matter_server.common.helpers.util import dataclass_from_dict -from matter_server.common.models.events import EventType -from matter_server.common.models.node import MatterNode +from matter_server.common.models import EventType, MatterNodeData from homeassistant.core import HomeAssistant @@ -33,9 +33,11 @@ async def setup_integration_with_node_fixture( ) -> MatterNode: """Set up Matter integration with fixture as node.""" node_data = load_and_parse_node_fixture(node_fixture) - node = dataclass_from_dict( - MatterNode, - node_data, + node = MatterNode( + dataclass_from_dict( + MatterNodeData, + node_data, + ) ) client.get_nodes.return_value = [node] client.get_node.return_value = node @@ -58,8 +60,8 @@ def set_node_attribute( value: Any, ) -> None: """Set a node attribute.""" - attribute = node.attributes[f"{endpoint}/{cluster_id}/{attribute_id}"] - attribute.value = value + attribute_path = f"{endpoint}/{cluster_id}/{attribute_id}" + node.endpoints[endpoint].set_attribute_value(attribute_path, value) async def trigger_subscription_callback( @@ -69,6 +71,6 @@ async def trigger_subscription_callback( data: Any = None, ) -> None: """Trigger a subscription callback.""" - callback = client.subscribe.call_args[0][0] + callback = client.subscribe.call_args.kwargs["callback"] callback(event, data) await hass.async_block_till_done() diff --git a/tests/components/matter/conftest.py b/tests/components/matter/conftest.py index 7ecf9c1e12f..e4af252fccb 100644 --- a/tests/components/matter/conftest.py +++ b/tests/components/matter/conftest.py @@ -6,7 +6,7 @@ from collections.abc import AsyncGenerator, Generator from unittest.mock import AsyncMock, MagicMock, patch from matter_server.common.const import SCHEMA_VERSION -from matter_server.common.models.server_information import ServerInfo +from matter_server.common.models import ServerInfoMessage import pytest from homeassistant.core import HomeAssistant @@ -39,7 +39,7 @@ async def matter_client_fixture() -> AsyncGenerator[MagicMock, None]: client.connect = AsyncMock(side_effect=connect) client.start_listening = AsyncMock(side_effect=listen) - client.server_info = ServerInfo( + client.server_info = ServerInfoMessage( fabric_id=MOCK_FABRIC_ID, compressed_fabric_id=MOCK_COMPR_FABRIC_ID, schema_version=1, diff --git a/tests/components/matter/fixtures/config_entry_diagnostics.json b/tests/components/matter/fixtures/config_entry_diagnostics.json index 8c7b0960fc8..95ef0b6a850 100644 --- a/tests/components/matter/fixtures/config_entry_diagnostics.json +++ b/tests/components/matter/fixtures/config_entry_diagnostics.json @@ -13,4229 +13,663 @@ "node_id": 5, "date_commissioned": "2023-01-16T21:07:57.508440", "last_interview": "2023-01-16T21:07:57.508448", - "interview_version": 1, + "interview_version": 2, "attributes": { - "0/4/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.NameSupport", - "attribute_name": "NameSupport", - "value": 128 - }, - "0/4/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "0/4/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "0/4/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [0, 1, 2, 3] - }, - "0/4/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 3, 4, 5] - }, - "0/4/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - }, - "0/29/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.DeviceTypeList", - "attribute_name": "DeviceTypeList", - "value": [ - { - "type": 22, - "revision": 1 - } - ] - }, - "0/29/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ServerList", - "attribute_name": "ServerList", - "value": [ - 4, 29, 31, 40, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 55, 59, 60, - 62, 63, 64, 65 - ] - }, - "0/29/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClientList", - "attribute_name": "ClientList", - "value": [41] - }, - "0/29/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.PartsList", - "attribute_name": "PartsList", - "value": [1] - }, - "0/29/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/29/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/29/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/29/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/29/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/31/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.Acl", - "attribute_name": "Acl", - "value": [ - { - "privilege": 5, - "authMode": 2, - "subjects": [112233], - "targets": null, - "fabricIndex": 1 - } - ] - }, - "0/31/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.Extension", - "attribute_name": "Extension", - "value": [] - }, - "0/31/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.SubjectsPerAccessControlEntry", - "attribute_name": "SubjectsPerAccessControlEntry", - "value": 4 - }, - "0/31/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.TargetsPerAccessControlEntry", - "attribute_name": "TargetsPerAccessControlEntry", - "value": 3 - }, - "0/31/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AccessControlEntriesPerFabric", - "attribute_name": "AccessControlEntriesPerFabric", - "value": 3 - }, - "0/31/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/31/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/31/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/31/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/31/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533] - }, - "0/40/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", - "attribute_name": "DataModelRevision", - "value": 1 - }, - "0/40/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", - "attribute_name": "VendorName", - "value": "Nabu Casa" - }, - "0/40/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", - "attribute_name": "VendorID", - "value": 65521 - }, - "0/40/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", - "attribute_name": "ProductName", - "value": "M5STAMP Lighting App" - }, - "0/40/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", - "attribute_name": "ProductID", - "value": 32768 - }, - "0/40/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", - "attribute_name": "NodeLabel", - "value": "" - }, - "0/40/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", - "attribute_name": "Location", - "value": "XX" - }, - "0/40/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", - "attribute_name": "HardwareVersion", - "value": 0 - }, - "0/40/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", - "attribute_name": "HardwareVersionString", - "value": "v1.0" - }, - "0/40/9": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", - "attribute_name": "SoftwareVersion", - "value": 1 - }, - "0/40/10": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", - "attribute_name": "SoftwareVersionString", - "value": "v1.0" - }, - "0/40/11": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", - "attribute_name": "ManufacturingDate", - "value": "20200101" - }, - "0/40/12": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", - "attribute_name": "PartNumber", - "value": "" - }, - "0/40/13": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", - "attribute_name": "ProductURL", - "value": "" - }, - "0/40/14": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", - "attribute_name": "ProductLabel", - "value": "" - }, - "0/40/15": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", - "attribute_name": "SerialNumber", - "value": "TEST_SN" - }, - "0/40/16": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", - "attribute_name": "LocalConfigDisabled", - "value": false - }, - "0/40/17": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", - "attribute_name": "Reachable", - "value": true - }, - "0/40/18": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", - "attribute_name": "UniqueID", - "value": "869D5F986B588B29" - }, + "0/4/0": 128, + "0/4/65532": 1, + "0/4/65533": 4, + "0/4/65528": [0, 1, 2, 3], + "0/4/65529": [0, 1, 2, 3, 4, 5], + "0/4/65531": [0, 65528, 65529, 65531, 65532, 65533], + "0/29/0": [ + { + "type": 22, + "revision": 1 + } + ], + "0/29/1": [ + 4, 29, 31, 40, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 55, 59, 60, 62, + 63, 64, 65 + ], + "0/29/2": [41], + "0/29/3": [1], + "0/29/65532": 0, + "0/29/65533": 1, + "0/29/65528": [], + "0/29/65529": [], + "0/29/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/31/0": [ + { + "privilege": 5, + "authMode": 2, + "subjects": [112233], + "targets": null, + "fabricIndex": 1 + } + ], + "0/31/1": [], + "0/31/2": 4, + "0/31/3": 3, + "0/31/4": 3, + "0/31/65532": 0, + "0/31/65533": 1, + "0/31/65528": [], + "0/31/65529": [], + "0/31/65531": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533], + "0/40/0": 1, + "0/40/1": "Nabu Casa", + "0/40/2": 65521, + "0/40/3": "M5STAMP Lighting App", + "0/40/4": 32768, + "0/40/5": "", + "0/40/6": "XX", + "0/40/7": 0, + "0/40/8": "v1.0", + "0/40/9": 1, + "0/40/10": "v1.0", + "0/40/11": "20200101", + "0/40/12": "", + "0/40/13": "", + "0/40/14": "", + "0/40/15": "TEST_SN", + "0/40/16": false, + "0/40/17": true, + "0/40/18": "869D5F986B588B29", "0/40/19": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", - "attribute_name": "CapabilityMinima", - "value": { - "caseSessionsPerFabric": 3, - "subscriptionsPerFabric": 3 - } - }, - "0/40/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/40/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/40/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/40/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/40/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, - 19, 65528, 65529, 65531, 65532, 65533 - ] - }, - "0/42/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.DefaultOtaProviders", - "attribute_name": "DefaultOtaProviders", - "value": [] - }, - "0/42/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.UpdatePossible", - "attribute_name": "UpdatePossible", - "value": true - }, - "0/42/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.UpdateState", - "attribute_name": "UpdateState", - "value": 0 - }, - "0/42/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.UpdateStateProgress", - "attribute_name": "UpdateStateProgress", - "value": 0 - }, - "0/42/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/42/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/42/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/42/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/42/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/43/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.ActiveLocale", - "attribute_name": "ActiveLocale", - "value": "en-US" - }, - "0/43/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.SupportedLocales", - "attribute_name": "SupportedLocales", - "value": [ - "en-US", - "de-DE", - "fr-FR", - "en-GB", - "es-ES", - "zh-CN", - "it-IT", - "ja-JP" - ] - }, - "0/43/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/43/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/43/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/43/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/43/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 65528, 65529, 65531, 65532, 65533] - }, - "0/44/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.HourFormat", - "attribute_name": "HourFormat", - "value": 0 - }, - "0/44/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.ActiveCalendarType", - "attribute_name": "ActiveCalendarType", - "value": 0 - }, - "0/44/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.SupportedCalendarTypes", - "attribute_name": "SupportedCalendarTypes", - "value": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 7] - }, - "0/44/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/44/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/44/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/44/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/44/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] - }, - "0/48/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.Breadcrumb", - "attribute_name": "Breadcrumb", - "value": 0 + "caseSessionsPerFabric": 3, + "subscriptionsPerFabric": 3 }, + "0/40/65532": 0, + "0/40/65533": 1, + "0/40/65528": [], + "0/40/65529": [], + "0/40/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, + 65528, 65529, 65531, 65532, 65533 + ], + "0/42/0": [], + "0/42/1": true, + "0/42/2": 0, + "0/42/3": 0, + "0/42/65532": 0, + "0/42/65533": 1, + "0/42/65528": [], + "0/42/65529": [0], + "0/42/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/43/0": "en-US", + "0/43/1": [ + "en-US", + "de-DE", + "fr-FR", + "en-GB", + "es-ES", + "zh-CN", + "it-IT", + "ja-JP" + ], + "0/43/65532": 0, + "0/43/65533": 1, + "0/43/65528": [], + "0/43/65529": [], + "0/43/65531": [0, 1, 65528, 65529, 65531, 65532, 65533], + "0/44/0": 0, + "0/44/1": 0, + "0/44/2": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 7], + "0/44/65532": 0, + "0/44/65533": 1, + "0/44/65528": [], + "0/44/65529": [], + "0/44/65531": [0, 1, 2, 65528, 65529, 65531, 65532, 65533], + "0/48/0": 0, "0/48/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.BasicCommissioningInfo", - "attribute_name": "BasicCommissioningInfo", - "value": { - "failSafeExpiryLengthSeconds": 60, - "maxCumulativeFailsafeSeconds": 900 + "failSafeExpiryLengthSeconds": 60, + "maxCumulativeFailsafeSeconds": 900 + }, + "0/48/2": 0, + "0/48/3": 0, + "0/48/4": true, + "0/48/65532": 0, + "0/48/65533": 1, + "0/48/65528": [1, 3, 5], + "0/48/65529": [0, 2, 4], + "0/48/65531": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533], + "0/49/0": 1, + "0/49/1": [], + "0/49/2": 10, + "0/49/3": 30, + "0/49/4": true, + "0/49/5": 0, + "0/49/6": "bVdMQU4yLjQ=", + "0/49/7": null, + "0/49/65532": 1, + "0/49/65533": 1, + "0/49/65528": [1, 5, 7], + "0/49/65529": [0, 2, 4, 6, 8], + "0/49/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 65528, 65529, 65531, 65532, 65533 + ], + "0/50/65532": 0, + "0/50/65533": 1, + "0/50/65528": [1], + "0/50/65529": [0], + "0/50/65531": [65528, 65529, 65531, 65532, 65533], + "0/51/0": [ + { + "name": "WIFI_STA_DEF", + "isOperational": true, + "offPremiseServicesReachableIPv4": null, + "offPremiseServicesReachableIPv6": null, + "hardwareAddress": "YFX5V0js", + "IPv4Addresses": ["wKgBIw=="], + "IPv6Addresses": ["/oAAAAAAAABiVfn//ldI7A=="], + "type": 1 } - }, - "0/48/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.RegulatoryConfig", - "attribute_name": "RegulatoryConfig", - "value": 0 - }, - "0/48/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.LocationCapability", - "attribute_name": "LocationCapability", - "value": 0 - }, - "0/48/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.SupportsConcurrentConnection", - "attribute_name": "SupportsConcurrentConnection", - "value": true - }, - "0/48/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/48/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/48/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1, 3, 5] - }, - "0/48/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 2, 4] - }, - "0/48/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533] - }, - "0/49/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.MaxNetworks", - "attribute_name": "MaxNetworks", - "value": 1 - }, - "0/49/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.Networks", - "attribute_name": "Networks", - "value": [] - }, - "0/49/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.ScanMaxTimeSeconds", - "attribute_name": "ScanMaxTimeSeconds", - "value": 10 - }, - "0/49/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.ConnectMaxTimeSeconds", - "attribute_name": "ConnectMaxTimeSeconds", - "value": 30 - }, - "0/49/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.InterfaceEnabled", - "attribute_name": "InterfaceEnabled", - "value": true - }, - "0/49/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastNetworkingStatus", - "attribute_name": "LastNetworkingStatus", - "value": 0 - }, - "0/49/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastNetworkID", - "attribute_name": "LastNetworkID", - "value": "bVdMQU4yLjQ=" - }, - "0/49/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastConnectErrorValue", - "attribute_name": "LastConnectErrorValue", - "value": null - }, - "0/49/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "0/49/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/49/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1, 5, 7] - }, - "0/49/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 2, 4, 6, 8] - }, - "0/49/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 5, 6, 7, 65528, 65529, 65531, 65532, 65533] - }, - "0/50/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/50/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/50/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1] - }, - "0/50/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/50/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [65528, 65529, 65531, 65532, 65533] - }, - "0/51/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.NetworkInterfaces", - "attribute_name": "NetworkInterfaces", - "value": [ - { - "name": "WIFI_STA_DEF", - "isOperational": true, - "offPremiseServicesReachableIPv4": null, - "offPremiseServicesReachableIPv6": null, - "hardwareAddress": "YFX5V0js", - "IPv4Addresses": ["wKgBIw=="], - "IPv6Addresses": ["/oAAAAAAAABiVfn//ldI7A=="], - "type": 1 - } - ] - }, - "0/51/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.RebootCount", - "attribute_name": "RebootCount", - "value": 3 - }, - "0/51/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.UpTime", - "attribute_name": "UpTime", - "value": 213 - }, - "0/51/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.TotalOperationalHours", - "attribute_name": "TotalOperationalHours", - "value": 0 - }, - "0/51/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.BootReasons", - "attribute_name": "BootReasons", - "value": 1 - }, - "0/51/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveHardwareFaults", - "attribute_name": "ActiveHardwareFaults", - "value": [] - }, - "0/51/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveRadioFaults", - "attribute_name": "ActiveRadioFaults", - "value": [] - }, - "0/51/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveNetworkFaults", - "attribute_name": "ActiveNetworkFaults", - "value": [] - }, - "0/51/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.TestEventTriggersEnabled", - "attribute_name": "TestEventTriggersEnabled", - "value": false - }, - "0/51/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/51/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/51/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/51/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/51/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533 - ] - }, - "0/52/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.ThreadMetrics", - "attribute_name": "ThreadMetrics", - "value": [] - }, - "0/52/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.CurrentHeapFree", - "attribute_name": "CurrentHeapFree", - "value": 166660 - }, - "0/52/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.CurrentHeapUsed", - "attribute_name": "CurrentHeapUsed", - "value": 86332 - }, - "0/52/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.CurrentHeapHighWatermark", - "attribute_name": "CurrentHeapHighWatermark", - "value": 99208 - }, - "0/52/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/52/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/52/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/52/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/52/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, + ], + "0/51/1": 3, + "0/51/2": 213, + "0/51/3": 0, + "0/51/4": 1, + "0/51/5": [], + "0/51/6": [], + "0/51/7": [], + "0/51/8": false, + "0/51/65532": 0, + "0/51/65533": 1, + "0/51/65528": [], + "0/51/65529": [0], + "0/51/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533 + ], + "0/52/0": [], + "0/52/1": 166660, + "0/52/2": 86332, + "0/52/3": 99208, + "0/52/65532": 0, + "0/52/65533": 1, + "0/52/65528": [], + "0/52/65529": [], + "0/52/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], "0/53/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.Channel", - "attribute_name": "Channel", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RoutingRole", - "attribute_name": "RoutingRole", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.NetworkName", - "attribute_name": "NetworkName", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PanId", - "attribute_name": "PanId", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ExtendedPanId", - "attribute_name": "ExtendedPanId", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.MeshLocalPrefix", - "attribute_name": "MeshLocalPrefix", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.OverrunCount", - "attribute_name": "OverrunCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.NeighborTableList", - "attribute_name": "NeighborTableList", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RouteTableList", - "attribute_name": "RouteTableList", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/9": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PartitionId", - "attribute_name": "PartitionId", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/10": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.Weighting", - "attribute_name": "Weighting", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/11": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.DataVersion", - "attribute_name": "DataVersion", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/12": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.StableDataVersion", - "attribute_name": "StableDataVersion", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/13": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.LeaderRouterId", - "attribute_name": "LeaderRouterId", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/14": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.DetachedRoleCount", - "attribute_name": "DetachedRoleCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/15": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ChildRoleCount", - "attribute_name": "ChildRoleCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/16": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RouterRoleCount", - "attribute_name": "RouterRoleCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/17": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.LeaderRoleCount", - "attribute_name": "LeaderRoleCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/18": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.AttachAttemptCount", - "attribute_name": "AttachAttemptCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/19": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PartitionIdChangeCount", - "attribute_name": "PartitionIdChangeCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/20": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 20, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.BetterPartitionAttachAttemptCount", - "attribute_name": "BetterPartitionAttachAttemptCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/21": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 21, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ParentChangeCount", - "attribute_name": "ParentChangeCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/22": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 22, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxTotalCount", - "attribute_name": "TxTotalCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/23": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 23, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxUnicastCount", - "attribute_name": "TxUnicastCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/24": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 24, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxBroadcastCount", - "attribute_name": "TxBroadcastCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/25": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 25, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxAckRequestedCount", - "attribute_name": "TxAckRequestedCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/26": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 26, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxAckedCount", - "attribute_name": "TxAckedCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/27": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 27, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxNoAckRequestedCount", - "attribute_name": "TxNoAckRequestedCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/28": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 28, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxDataCount", - "attribute_name": "TxDataCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/29": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 29, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxDataPollCount", - "attribute_name": "TxDataPollCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/30": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 30, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxBeaconCount", - "attribute_name": "TxBeaconCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/31": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 31, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxBeaconRequestCount", - "attribute_name": "TxBeaconRequestCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/32": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 32, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxOtherCount", - "attribute_name": "TxOtherCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/33": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 33, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxRetryCount", - "attribute_name": "TxRetryCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/34": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 34, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxDirectMaxRetryExpiryCount", - "attribute_name": "TxDirectMaxRetryExpiryCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/35": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 35, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxIndirectMaxRetryExpiryCount", - "attribute_name": "TxIndirectMaxRetryExpiryCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/36": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 36, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxErrCcaCount", - "attribute_name": "TxErrCcaCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/37": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 37, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxErrAbortCount", - "attribute_name": "TxErrAbortCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/38": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 38, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxErrBusyChannelCount", - "attribute_name": "TxErrBusyChannelCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/39": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 39, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxTotalCount", - "attribute_name": "RxTotalCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/40": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 40, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxUnicastCount", - "attribute_name": "RxUnicastCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/41": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 41, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxBroadcastCount", - "attribute_name": "RxBroadcastCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/42": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 42, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDataCount", - "attribute_name": "RxDataCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/43": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 43, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDataPollCount", - "attribute_name": "RxDataPollCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/44": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 44, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxBeaconCount", - "attribute_name": "RxBeaconCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/45": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 45, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxBeaconRequestCount", - "attribute_name": "RxBeaconRequestCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/46": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 46, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxOtherCount", - "attribute_name": "RxOtherCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/47": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 47, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxAddressFilteredCount", - "attribute_name": "RxAddressFilteredCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/48": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 48, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDestAddrFilteredCount", - "attribute_name": "RxDestAddrFilteredCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/49": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 49, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDuplicatedCount", - "attribute_name": "RxDuplicatedCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/50": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 50, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrNoFrameCount", - "attribute_name": "RxErrNoFrameCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/51": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 51, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrUnknownNeighborCount", - "attribute_name": "RxErrUnknownNeighborCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/52": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 52, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrInvalidSrcAddrCount", - "attribute_name": "RxErrInvalidSrcAddrCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/53": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 53, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrSecCount", - "attribute_name": "RxErrSecCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/54": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 54, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrFcsCount", - "attribute_name": "RxErrFcsCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/55": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 55, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrOtherCount", - "attribute_name": "RxErrOtherCount", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/56": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 56, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ActiveTimestamp", - "attribute_name": "ActiveTimestamp", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/57": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 57, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PendingTimestamp", - "attribute_name": "PendingTimestamp", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/58": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 58, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.Delay", - "attribute_name": "Delay", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/59": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 59, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.SecurityPolicy", - "attribute_name": "SecurityPolicy", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/60": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 60, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ChannelPage0Mask", - "attribute_name": "ChannelPage0Mask", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/61": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 61, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.OperationalDatasetComponents", - "attribute_name": "OperationalDatasetComponents", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "0/53/62": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 62, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ActiveNetworkFaultsList", - "attribute_name": "ActiveNetworkFaultsList", - "value": { - "TLVValue": null, - "Reason": null + "TLVValue": null, + "Reason": null + }, + "0/53/65532": 15, + "0/53/65533": 1, + "0/53/65528": [], + "0/53/65529": [0], + "0/53/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, + 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, + 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, + 54, 55, 56, 57, 58, 59, 60, 61, 62, 65528, 65529, 65531, 65532, 65533 + ], + "0/54/0": "BKFR27h1", + "0/54/1": 4, + "0/54/2": 3, + "0/54/3": 3, + "0/54/4": -56, + "0/54/5": null, + "0/54/6": null, + "0/54/7": null, + "0/54/8": null, + "0/54/9": null, + "0/54/10": null, + "0/54/11": null, + "0/54/12": null, + "0/54/65532": 3, + "0/54/65533": 1, + "0/54/65528": [], + "0/54/65529": [0], + "0/54/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 65528, 65529, 65531, 65532, + 65533 + ], + "0/55/0": null, + "0/55/1": null, + "0/55/2": 0, + "0/55/3": 0, + "0/55/4": 0, + "0/55/5": 0, + "0/55/6": 0, + "0/55/7": null, + "0/55/8": 0, + "0/55/65532": 3, + "0/55/65533": 1, + "0/55/65528": [], + "0/55/65529": [0], + "0/55/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533 + ], + "0/59/65532": 0, + "0/59/65533": 1, + "0/59/65528": [], + "0/59/65529": [], + "0/59/65531": [65528, 65529, 65531, 65532, 65533], + "0/60/0": 0, + "0/60/1": null, + "0/60/2": null, + "0/60/65532": 0, + "0/60/65533": 1, + "0/60/65528": [], + "0/60/65529": [0, 1, 2], + "0/60/65531": [0, 1, 2, 65528, 65529, 65531, 65532, 65533], + "0/62/0": [ + { + "noc": "FTABAQEkAgE3AyQTAhgmBIAigScmBYAlTTo3BiQVASQRBRgkBwEkCAEwCUEEELwf3lni0ez0mRGa/z9gFtuTfn3Gpnsq/rBvQmpgjxqgC0RNcZmHfAm176H0j6ENQrnc1RhkKA5qiJtEgzQF4DcKNQEoARgkAgE2AwQCBAEYMAQURdGBtNYpheXbKDo2Od5OLDCytacwBRQc+rrVsNzRFL1V9i4OFnGKrwIajRgwC0AG9mdYqL5WJ0jKIBcEzeWQbo8xg6sFv0ANmq0KSpMbfqVvw8Y39XEOQ6B8v+JCXSGMpdPC0nbVQKuv/pKUvJoTGA==", + "icac": "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQTAhgkBwEkCAEwCUEEWYzjmQq/3zCbWfMKR0asASVnOBOkNAzdwdW1X6sC0zA5m3DhGRMEff09ZqHDZi/o6CW+I+rEGNEyW+00/M84azcKNQEpARgkAmAwBBQc+rrVsNzRFL1V9i4OFnGKrwIajTAFFI6CuLTopCFiBYeGuUcP8Ak5Jo3gGDALQDYMHSAwxZPP4TFqIGot2vm5+Wir58quxbojkWwyT9l8eat6f9sJmjTZ0VLggTwAWvY+IVm82YuMzTPxmkNWxVIY", + "fabricIndex": 1 } - }, - "0/53/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 15 - }, - "0/53/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/53/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/53/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/53/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, - 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, - 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 65528, 65529, 65531, 65532, - 65533 - ] - }, - "0/54/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.Bssid", - "attribute_name": "Bssid", - "value": "BKFR27h1" - }, - "0/54/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.SecurityType", - "attribute_name": "SecurityType", - "value": 4 - }, - "0/54/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.WiFiVersion", - "attribute_name": "WiFiVersion", - "value": 3 - }, - "0/54/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.ChannelNumber", - "attribute_name": "ChannelNumber", - "value": 3 - }, - "0/54/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.Rssi", - "attribute_name": "Rssi", - "value": -56 - }, - "0/54/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.BeaconLostCount", - "attribute_name": "BeaconLostCount", - "value": null - }, - "0/54/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.BeaconRxCount", - "attribute_name": "BeaconRxCount", - "value": null - }, - "0/54/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketMulticastRxCount", - "attribute_name": "PacketMulticastRxCount", - "value": null - }, - "0/54/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketMulticastTxCount", - "attribute_name": "PacketMulticastTxCount", - "value": null - }, - "0/54/9": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketUnicastRxCount", - "attribute_name": "PacketUnicastRxCount", - "value": null - }, - "0/54/10": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketUnicastTxCount", - "attribute_name": "PacketUnicastTxCount", - "value": null - }, - "0/54/11": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.CurrentMaxRate", - "attribute_name": "CurrentMaxRate", - "value": null - }, - "0/54/12": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.OverrunCount", - "attribute_name": "OverrunCount", - "value": null - }, - "0/54/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 3 - }, - "0/54/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/54/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/54/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/54/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 65528, 65529, 65531, - 65532, 65533 - ] - }, - "0/55/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.PHYRate", - "attribute_name": "PHYRate", - "value": null - }, - "0/55/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.FullDuplex", - "attribute_name": "FullDuplex", - "value": null - }, - "0/55/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.PacketRxCount", - "attribute_name": "PacketRxCount", - "value": 0 - }, - "0/55/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.PacketTxCount", - "attribute_name": "PacketTxCount", - "value": 0 - }, - "0/55/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.TxErrCount", - "attribute_name": "TxErrCount", - "value": 0 - }, - "0/55/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.CollisionCount", - "attribute_name": "CollisionCount", - "value": 0 - }, - "0/55/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.OverrunCount", - "attribute_name": "OverrunCount", - "value": 0 - }, - "0/55/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.CarrierDetect", - "attribute_name": "CarrierDetect", - "value": null - }, - "0/55/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.TimeSinceReset", - "attribute_name": "TimeSinceReset", - "value": 0 - }, - "0/55/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 3 - }, - "0/55/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/55/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/55/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/55/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533 - ] - }, - "0/59/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/59/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/59/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/59/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/59/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [65528, 65529, 65531, 65532, 65533] - }, - "0/60/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.WindowStatus", - "attribute_name": "WindowStatus", - "value": 0 - }, - "0/60/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AdminFabricIndex", - "attribute_name": "AdminFabricIndex", - "value": null - }, - "0/60/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AdminVendorId", - "attribute_name": "AdminVendorId", - "value": null - }, - "0/60/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/60/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/60/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/60/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2] - }, - "0/60/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] - }, - "0/62/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.NOCs", - "attribute_name": "NOCs", - "value": [ - { - "noc": "FTABAQEkAgE3AyQTAhgmBIAigScmBYAlTTo3BiQVASQRBRgkBwEkCAEwCUEEELwf3lni0ez0mRGa/z9gFtuTfn3Gpnsq/rBvQmpgjxqgC0RNcZmHfAm176H0j6ENQrnc1RhkKA5qiJtEgzQF4DcKNQEoARgkAgE2AwQCBAEYMAQURdGBtNYpheXbKDo2Od5OLDCytacwBRQc+rrVsNzRFL1V9i4OFnGKrwIajRgwC0AG9mdYqL5WJ0jKIBcEzeWQbo8xg6sFv0ANmq0KSpMbfqVvw8Y39XEOQ6B8v+JCXSGMpdPC0nbVQKuv/pKUvJoTGA==", - "icac": "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQTAhgkBwEkCAEwCUEEWYzjmQq/3zCbWfMKR0asASVnOBOkNAzdwdW1X6sC0zA5m3DhGRMEff09ZqHDZi/o6CW+I+rEGNEyW+00/M84azcKNQEpARgkAmAwBBQc+rrVsNzRFL1V9i4OFnGKrwIajTAFFI6CuLTopCFiBYeGuUcP8Ak5Jo3gGDALQDYMHSAwxZPP4TFqIGot2vm5+Wir58quxbojkWwyT9l8eat6f9sJmjTZ0VLggTwAWvY+IVm82YuMzTPxmkNWxVIY", - "fabricIndex": 1 - } - ] - }, - "0/62/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.Fabrics", - "attribute_name": "Fabrics", - "value": [ - { - "rootPublicKey": "BALNCzn2XOp1NrwszT+LOLYT+tM76+Pob8AIOFl9+0UWFsLp4ZHUainZZMJQIAHxv39srVUYW0+nacFcjHTzNHw=", - "vendorId": 65521, - "fabricId": 1, - "nodeId": 5, - "label": "", - "fabricIndex": 1 - } - ] - }, - "0/62/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.SupportedFabrics", - "attribute_name": "SupportedFabrics", - "value": 5 - }, - "0/62/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.CommissionedFabrics", - "attribute_name": "CommissionedFabrics", - "value": 1 - }, - "0/62/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.TrustedRootCertificates", - "attribute_name": "TrustedRootCertificates", - "value": [ - "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQUARgkBwEkCAEwCUEEAs0LOfZc6nU2vCzNP4s4thP60zvr4+hvwAg4WX37RRYWwunhkdRqKdlkwlAgAfG/f2ytVRhbT6dpwVyMdPM0fDcKNQEpARgkAmAwBBSOgri06KQhYgWHhrlHD/AJOSaN4DAFFI6CuLTopCFiBYeGuUcP8Ak5Jo3gGDALQGxeigcXo8H7pmRHCOma3uT688xoreaDwV8JfFUMUnHUvqg+2GNzFtvfD6MkDaYVPghsXjITZLv5qsHhrUaIO7QY" - ] - }, - "0/62/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.CurrentFabricIndex", - "attribute_name": "CurrentFabricIndex", - "value": 1 - }, - "0/62/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/62/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/62/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1, 3, 5, 8] - }, - "0/62/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 2, 4, 6, 7, 9, 10, 11] - }, - "0/62/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 5, 65528, 65529, 65531, 65532, 65533] - }, - "0/63/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.GroupKeyMap", - "attribute_name": "GroupKeyMap", - "value": [] - }, - "0/63/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.GroupTable", - "attribute_name": "GroupTable", - "value": [] - }, - "0/63/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.MaxGroupsPerFabric", - "attribute_name": "MaxGroupsPerFabric", - "value": 3 - }, - "0/63/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.MaxGroupKeysPerFabric", - "attribute_name": "MaxGroupKeysPerFabric", - "value": 3 - }, - "0/63/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/63/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/63/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [2, 5] - }, - "0/63/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 3, 4] - }, - "0/63/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/64/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.LabelList", - "attribute_name": "LabelList", - "value": [ - { - "label": "room", - "value": "bedroom 2" - }, - { - "label": "orientation", - "value": "North" - }, - { - "label": "floor", - "value": "2" - }, - { - "label": "direction", - "value": "up" - } - ] - }, - "0/64/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/64/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/64/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/64/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/64/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - }, - "0/65/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.LabelList", - "attribute_name": "LabelList", - "value": [] - }, - "0/65/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/65/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/65/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/65/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/65/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - }, - "1/3/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.IdentifyTime", - "attribute_name": "IdentifyTime", - "value": 0 - }, - "1/3/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.IdentifyType", - "attribute_name": "IdentifyType", - "value": 0 - }, - "1/3/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "1/3/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "1/3/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/3/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 64] - }, - "1/3/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 65528, 65529, 65531, 65532, 65533] - }, - "1/4/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.NameSupport", - "attribute_name": "NameSupport", - "value": 128 - }, - "1/4/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "1/4/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "1/4/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [0, 1, 2, 3] - }, - "1/4/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 3, 4, 5] - }, - "1/4/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - }, - "1/6/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.OnOff", - "attribute_name": "OnOff", - "value": false - }, - "1/6/16384": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16384, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.GlobalSceneControl", - "attribute_name": "GlobalSceneControl", - "value": true - }, - "1/6/16385": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16385, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.OnTime", - "attribute_name": "OnTime", - "value": 0 - }, - "1/6/16386": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16386, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.OffWaitTime", - "attribute_name": "OffWaitTime", - "value": 0 - }, - "1/6/16387": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16387, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.StartUpOnOff", - "attribute_name": "StartUpOnOff", - "value": null - }, - "1/6/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "1/6/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "1/6/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/6/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 64, 65, 66] - }, - "1/6/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 16384, 16385, 16386, 16387, 65528, 65529, 65531, 65532, 65533 - ] - }, - "1/8/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.CurrentLevel", - "attribute_name": "CurrentLevel", - "value": 254 - }, - "1/8/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.RemainingTime", - "attribute_name": "RemainingTime", - "value": 0 - }, - "1/8/2": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.MinLevel", - "attribute_name": "MinLevel", - "value": 1 - }, - "1/8/3": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.MaxLevel", - "attribute_name": "MaxLevel", - "value": 254 - }, - "1/8/4": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.CurrentFrequency", - "attribute_name": "CurrentFrequency", - "value": 0 - }, - "1/8/5": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.MinFrequency", - "attribute_name": "MinFrequency", - "value": 0 - }, - "1/8/6": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.MaxFrequency", - "attribute_name": "MaxFrequency", - "value": 0 - }, - "1/8/15": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.Options", - "attribute_name": "Options", - "value": 0 - }, - "1/8/16": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.OnOffTransitionTime", - "attribute_name": "OnOffTransitionTime", - "value": 0 - }, - "1/8/17": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.OnLevel", - "attribute_name": "OnLevel", - "value": null - }, - "1/8/18": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.OnTransitionTime", - "attribute_name": "OnTransitionTime", - "value": 0 - }, - "1/8/19": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.OffTransitionTime", - "attribute_name": "OffTransitionTime", - "value": 0 - }, - "1/8/20": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 20, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.DefaultMoveRate", - "attribute_name": "DefaultMoveRate", - "value": 50 - }, - "1/8/16384": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 16384, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.StartUpCurrentLevel", - "attribute_name": "StartUpCurrentLevel", - "value": null - }, - "1/8/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 3 - }, - "1/8/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 5 - }, - "1/8/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/8/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 3, 4, 5, 6, 7] - }, - "1/8/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 15, 16, 17, 18, 19, 20, 16384, 65528, 65529, - 65531, 65532, 65533 - ] - }, - "1/29/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.DeviceTypeList", - "attribute_name": "DeviceTypeList", - "value": [ - { - "type": 257, - "revision": 1 - } - ] - }, - "1/29/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ServerList", - "attribute_name": "ServerList", - "value": [3, 4, 6, 8, 29, 768, 1030] - }, - "1/29/2": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClientList", - "attribute_name": "ClientList", - "value": [] - }, - "1/29/3": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.PartsList", - "attribute_name": "PartsList", - "value": [] - }, - "1/29/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "1/29/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "1/29/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/29/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "1/29/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "1/768/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentHue", - "attribute_name": "CurrentHue", - "value": 0 - }, - "1/768/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentSaturation", - "attribute_name": "CurrentSaturation", - "value": 0 - }, - "1/768/2": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.RemainingTime", - "attribute_name": "RemainingTime", - "value": 0 - }, - "1/768/3": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentX", - "attribute_name": "CurrentX", - "value": 24939 - }, - "1/768/4": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentY", - "attribute_name": "CurrentY", - "value": 24701 - }, - "1/768/7": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorTemperatureMireds", - "attribute_name": "ColorTemperatureMireds", - "value": 0 - }, - "1/768/8": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorMode", - "attribute_name": "ColorMode", - "value": 2 - }, - "1/768/15": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.Options", - "attribute_name": "Options", - "value": 0 - }, - "1/768/16": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.NumberOfPrimaries", - "attribute_name": "NumberOfPrimaries", - "value": 0 - }, - "1/768/16384": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16384, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.EnhancedCurrentHue", - "attribute_name": "EnhancedCurrentHue", - "value": 0 - }, - "1/768/16385": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16385, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.EnhancedColorMode", - "attribute_name": "EnhancedColorMode", - "value": 2 - }, - "1/768/16386": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16386, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopActive", - "attribute_name": "ColorLoopActive", - "value": 0 - }, - "1/768/16387": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16387, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopDirection", - "attribute_name": "ColorLoopDirection", - "value": 0 - }, - "1/768/16388": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16388, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopTime", - "attribute_name": "ColorLoopTime", - "value": 25 - }, - "1/768/16389": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16389, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopStartEnhancedHue", - "attribute_name": "ColorLoopStartEnhancedHue", - "value": 8960 - }, - "1/768/16390": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16390, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopStoredEnhancedHue", - "attribute_name": "ColorLoopStoredEnhancedHue", - "value": 0 - }, - "1/768/16394": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16394, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorCapabilities", - "attribute_name": "ColorCapabilities", - "value": 31 - }, - "1/768/16395": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16395, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorTempPhysicalMinMireds", - "attribute_name": "ColorTempPhysicalMinMireds", - "value": 0 - }, - "1/768/16396": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16396, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorTempPhysicalMaxMireds", - "attribute_name": "ColorTempPhysicalMaxMireds", - "value": 65279 - }, - "1/768/16397": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16397, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CoupleColorTempToLevelMinMireds", - "attribute_name": "CoupleColorTempToLevelMinMireds", - "value": 0 - }, - "1/768/16400": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16400, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.StartUpColorTemperatureMireds", - "attribute_name": "StartUpColorTemperatureMireds", - "value": 0 - }, - "1/768/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 31 - }, - "1/768/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 5 - }, - "1/768/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/768/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 64, 65, 66, 67, 68, 71, 75, 76 - ] - }, - "1/768/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 7, 8, 15, 16, 16384, 16385, 16386, 16387, 16388, - 16389, 16390, 16394, 16395, 16396, 16397, 16400, 65528, 65529, - 65531, 65532, 65533 - ] - }, - "1/1030/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.Occupancy", - "attribute_name": "Occupancy", - "value": 0 - }, - "1/1030/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.OccupancySensorType", - "attribute_name": "OccupancySensorType", - "value": 0 - }, - "1/1030/2": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.OccupancySensorTypeBitmap", - "attribute_name": "OccupancySensorTypeBitmap", - "value": 1 - }, - "1/1030/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "1/1030/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 3 - }, - "1/1030/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/1030/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "1/1030/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] - } + ], + "0/62/1": [ + { + "rootPublicKey": "BALNCzn2XOp1NrwszT+LOLYT+tM76+Pob8AIOFl9+0UWFsLp4ZHUainZZMJQIAHxv39srVUYW0+nacFcjHTzNHw=", + "vendorId": 65521, + "fabricId": 1, + "nodeId": 5, + "label": "", + "fabricIndex": 1 + } + ], + "0/62/2": 5, + "0/62/3": 1, + "0/62/4": [ + "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQUARgkBwEkCAEwCUEEAs0LOfZc6nU2vCzNP4s4thP60zvr4+hvwAg4WX37RRYWwunhkdRqKdlkwlAgAfG/f2ytVRhbT6dpwVyMdPM0fDcKNQEpARgkAmAwBBSOgri06KQhYgWHhrlHD/AJOSaN4DAFFI6CuLTopCFiBYeGuUcP8Ak5Jo3gGDALQGxeigcXo8H7pmRHCOma3uT688xoreaDwV8JfFUMUnHUvqg+2GNzFtvfD6MkDaYVPghsXjITZLv5qsHhrUaIO7QY" + ], + "0/62/5": 1, + "0/62/65532": 0, + "0/62/65533": 1, + "0/62/65528": [1, 3, 5, 8], + "0/62/65529": [0, 2, 4, 6, 7, 9, 10, 11], + "0/62/65531": [0, 1, 2, 3, 4, 5, 65528, 65529, 65531, 65532, 65533], + "0/63/0": [], + "0/63/1": [], + "0/63/2": 3, + "0/63/3": 3, + "0/63/65532": 0, + "0/63/65533": 1, + "0/63/65528": [2, 5], + "0/63/65529": [0, 1, 3, 4], + "0/63/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/64/0": [ + { + "label": "room", + "value": "bedroom 2" + }, + { + "label": "orientation", + "value": "North" + }, + { + "label": "floor", + "value": "2" + }, + { + "label": "direction", + "value": "up" + } + ], + "0/64/65532": 0, + "0/64/65533": 1, + "0/64/65528": [], + "0/64/65529": [], + "0/64/65531": [0, 65528, 65529, 65531, 65532, 65533], + "0/65/0": [], + "0/65/65532": 0, + "0/65/65533": 1, + "0/65/65528": [], + "0/65/65529": [], + "0/65/65531": [0, 65528, 65529, 65531, 65532, 65533], + "1/3/0": 0, + "1/3/1": 0, + "1/3/65532": 0, + "1/3/65533": 4, + "1/3/65528": [], + "1/3/65529": [0, 64], + "1/3/65531": [0, 1, 65528, 65529, 65531, 65532, 65533], + "1/4/0": 128, + "1/4/65532": 1, + "1/4/65533": 4, + "1/4/65528": [0, 1, 2, 3], + "1/4/65529": [0, 1, 2, 3, 4, 5], + "1/4/65531": [0, 65528, 65529, 65531, 65532, 65533], + "1/6/0": false, + "1/6/16384": true, + "1/6/16385": 0, + "1/6/16386": 0, + "1/6/16387": null, + "1/6/65532": 1, + "1/6/65533": 4, + "1/6/65528": [], + "1/6/65529": [0, 1, 2, 64, 65, 66], + "1/6/65531": [ + 0, 16384, 16385, 16386, 16387, 65528, 65529, 65531, 65532, 65533 + ], + "1/8/0": 254, + "1/8/1": 0, + "1/8/2": 1, + "1/8/3": 254, + "1/8/4": 0, + "1/8/5": 0, + "1/8/6": 0, + "1/8/15": 0, + "1/8/16": 0, + "1/8/17": null, + "1/8/18": 0, + "1/8/19": 0, + "1/8/20": 50, + "1/8/16384": null, + "1/8/65532": 3, + "1/8/65533": 5, + "1/8/65528": [], + "1/8/65529": [0, 1, 2, 3, 4, 5, 6, 7], + "1/8/65531": [ + 0, 1, 2, 3, 4, 5, 6, 15, 16, 17, 18, 19, 20, 16384, 65528, 65529, + 65531, 65532, 65533 + ], + "1/29/0": [ + { + "type": 257, + "revision": 1 + } + ], + "1/29/1": [3, 4, 6, 8, 29, 768, 1030], + "1/29/2": [], + "1/29/3": [], + "1/29/65532": 0, + "1/29/65533": 1, + "1/29/65528": [], + "1/29/65529": [], + "1/29/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "1/768/0": 0, + "1/768/1": 0, + "1/768/2": 0, + "1/768/3": 24939, + "1/768/4": 24701, + "1/768/7": 0, + "1/768/8": 2, + "1/768/15": 0, + "1/768/16": 0, + "1/768/16384": 0, + "1/768/16385": 2, + "1/768/16386": 0, + "1/768/16387": 0, + "1/768/16388": 25, + "1/768/16389": 8960, + "1/768/16390": 0, + "1/768/16394": 31, + "1/768/16395": 0, + "1/768/16396": 65279, + "1/768/16397": 0, + "1/768/16400": 0, + "1/768/65532": 31, + "1/768/65533": 5, + "1/768/65528": [], + "1/768/65529": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 64, 65, 66, 67, 68, 71, 75, 76 + ], + "1/768/65531": [ + 0, 1, 2, 3, 4, 7, 8, 15, 16, 16384, 16385, 16386, 16387, 16388, 16389, + 16390, 16394, 16395, 16396, 16397, 16400, 65528, 65529, 65531, 65532, + 65533 + ], + "1/1030/0": 0, + "1/1030/1": 0, + "1/1030/2": 1, + "1/1030/65532": 0, + "1/1030/65533": 3, + "1/1030/65528": [], + "1/1030/65529": [], + "1/1030/65531": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] }, - "endpoints": [0, 1], - "root_device_type_instance": { - "__type": "", - "repr": "" - }, - "aggregator_device_type_instance": null, - "device_type_instances": [ - { - "__type": "", - "repr": "" - } - ], - "node_devices": [ - { - "__type": "", - "repr": "" - } - ] + "available": true } ], "events": [] diff --git a/tests/components/matter/fixtures/config_entry_diagnostics_redacted.json b/tests/components/matter/fixtures/config_entry_diagnostics_redacted.json index bbe7cf1f2c6..794980a8fd4 100644 --- a/tests/components/matter/fixtures/config_entry_diagnostics_redacted.json +++ b/tests/components/matter/fixtures/config_entry_diagnostics_redacted.json @@ -14,4229 +14,475 @@ "node_id": 5, "date_commissioned": "2023-01-16T21:07:57.508440", "last_interview": "2023-01-16T21:07:57.508448", - "interview_version": 1, + "interview_version": 2, "attributes": { - "0/4/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.NameSupport", - "attribute_name": "NameSupport", - "value": 128 - }, - "0/4/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "0/4/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "0/4/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [0, 1, 2, 3] - }, - "0/4/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 3, 4, 5] - }, - "0/4/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - }, - "0/29/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.DeviceTypeList", - "attribute_name": "DeviceTypeList", - "value": [ - { - "type": 22, - "revision": 1 - } - ] - }, - "0/29/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ServerList", - "attribute_name": "ServerList", - "value": [ - 4, 29, 31, 40, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 55, 59, 60, - 62, 63, 64, 65 - ] - }, - "0/29/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClientList", - "attribute_name": "ClientList", - "value": [41] - }, - "0/29/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.PartsList", - "attribute_name": "PartsList", - "value": [1] - }, - "0/29/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/29/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/29/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/29/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/29/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/31/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.Acl", - "attribute_name": "Acl", - "value": [ - { - "privilege": 5, - "authMode": 2, - "subjects": [112233], - "targets": null, - "fabricIndex": 1 - } - ] - }, - "0/31/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.Extension", - "attribute_name": "Extension", - "value": [] - }, - "0/31/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.SubjectsPerAccessControlEntry", - "attribute_name": "SubjectsPerAccessControlEntry", - "value": 4 - }, - "0/31/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.TargetsPerAccessControlEntry", - "attribute_name": "TargetsPerAccessControlEntry", - "value": 3 - }, - "0/31/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AccessControlEntriesPerFabric", - "attribute_name": "AccessControlEntriesPerFabric", - "value": 3 - }, - "0/31/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/31/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/31/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/31/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/31/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533] - }, - "0/40/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", - "attribute_name": "DataModelRevision", - "value": 1 - }, - "0/40/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", - "attribute_name": "VendorName", - "value": "Nabu Casa" - }, - "0/40/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", - "attribute_name": "VendorID", - "value": 65521 - }, - "0/40/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", - "attribute_name": "ProductName", - "value": "M5STAMP Lighting App" - }, - "0/40/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", - "attribute_name": "ProductID", - "value": 32768 - }, - "0/40/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", - "attribute_name": "NodeLabel", - "value": "" - }, - "0/40/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", - "attribute_name": "Location", - "value": "**REDACTED**" - }, - "0/40/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", - "attribute_name": "HardwareVersion", - "value": 0 - }, - "0/40/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", - "attribute_name": "HardwareVersionString", - "value": "v1.0" - }, - "0/40/9": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", - "attribute_name": "SoftwareVersion", - "value": 1 - }, - "0/40/10": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", - "attribute_name": "SoftwareVersionString", - "value": "v1.0" - }, - "0/40/11": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", - "attribute_name": "ManufacturingDate", - "value": "20200101" - }, - "0/40/12": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", - "attribute_name": "PartNumber", - "value": "" - }, - "0/40/13": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", - "attribute_name": "ProductURL", - "value": "" - }, - "0/40/14": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", - "attribute_name": "ProductLabel", - "value": "" - }, - "0/40/15": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", - "attribute_name": "SerialNumber", - "value": "TEST_SN" - }, - "0/40/16": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", - "attribute_name": "LocalConfigDisabled", - "value": false - }, - "0/40/17": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", - "attribute_name": "Reachable", - "value": true - }, - "0/40/18": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", - "attribute_name": "UniqueID", - "value": "869D5F986B588B29" - }, + "0/4/0": 128, + "0/4/65532": 1, + "0/4/65533": 4, + "0/4/65528": [0, 1, 2, 3], + "0/4/65529": [0, 1, 2, 3, 4, 5], + "0/4/65531": [0, 65528, 65529, 65531, 65532, 65533], + "0/29/0": [ + { + "type": 22, + "revision": 1 + } + ], + "0/29/1": [ + 4, 29, 31, 40, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 55, 59, 60, + 62, 63, 64, 65 + ], + "0/29/2": [41], + "0/29/3": [1], + "0/29/65532": 0, + "0/29/65533": 1, + "0/29/65528": [], + "0/29/65529": [], + "0/29/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/31/0": [ + { + "privilege": 5, + "authMode": 2, + "subjects": [112233], + "targets": null, + "fabricIndex": 1 + } + ], + "0/31/1": [], + "0/31/2": 4, + "0/31/3": 3, + "0/31/4": 3, + "0/31/65532": 0, + "0/31/65533": 1, + "0/31/65528": [], + "0/31/65529": [], + "0/31/65531": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533], + "0/40/0": 1, + "0/40/1": "Nabu Casa", + "0/40/2": 65521, + "0/40/3": "M5STAMP Lighting App", + "0/40/4": 32768, + "0/40/5": "", + "0/40/6": "**REDACTED**", + "0/40/7": 0, + "0/40/8": "v1.0", + "0/40/9": 1, + "0/40/10": "v1.0", + "0/40/11": "20200101", + "0/40/12": "", + "0/40/13": "", + "0/40/14": "", + "0/40/15": "TEST_SN", + "0/40/16": false, + "0/40/17": true, + "0/40/18": "869D5F986B588B29", "0/40/19": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", - "attribute_name": "CapabilityMinima", - "value": { - "caseSessionsPerFabric": 3, - "subscriptionsPerFabric": 3 - } - }, - "0/40/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/40/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/40/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/40/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/40/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, - 19, 65528, 65529, 65531, 65532, 65533 - ] - }, - "0/42/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.DefaultOtaProviders", - "attribute_name": "DefaultOtaProviders", - "value": [] - }, - "0/42/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.UpdatePossible", - "attribute_name": "UpdatePossible", - "value": true - }, - "0/42/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.UpdateState", - "attribute_name": "UpdateState", - "value": 0 - }, - "0/42/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.UpdateStateProgress", - "attribute_name": "UpdateStateProgress", - "value": 0 - }, - "0/42/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/42/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/42/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/42/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/42/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/43/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.ActiveLocale", - "attribute_name": "ActiveLocale", - "value": "en-US" - }, - "0/43/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.SupportedLocales", - "attribute_name": "SupportedLocales", - "value": [ - "en-US", - "de-DE", - "fr-FR", - "en-GB", - "es-ES", - "zh-CN", - "it-IT", - "ja-JP" - ] - }, - "0/43/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/43/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/43/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/43/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/43/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 65528, 65529, 65531, 65532, 65533] - }, - "0/44/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.HourFormat", - "attribute_name": "HourFormat", - "value": 0 - }, - "0/44/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.ActiveCalendarType", - "attribute_name": "ActiveCalendarType", - "value": 0 - }, - "0/44/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.SupportedCalendarTypes", - "attribute_name": "SupportedCalendarTypes", - "value": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 7] - }, - "0/44/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/44/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/44/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/44/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/44/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] - }, - "0/48/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.Breadcrumb", - "attribute_name": "Breadcrumb", - "value": 0 + "caseSessionsPerFabric": 3, + "subscriptionsPerFabric": 3 }, + "0/40/65532": 0, + "0/40/65533": 1, + "0/40/65528": [], + "0/40/65529": [], + "0/40/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, + 19, 65528, 65529, 65531, 65532, 65533 + ], + "0/42/0": [], + "0/42/1": true, + "0/42/2": 0, + "0/42/3": 0, + "0/42/65532": 0, + "0/42/65533": 1, + "0/42/65528": [], + "0/42/65529": [0], + "0/42/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/43/0": "en-US", + "0/43/1": [ + "en-US", + "de-DE", + "fr-FR", + "en-GB", + "es-ES", + "zh-CN", + "it-IT", + "ja-JP" + ], + "0/43/65532": 0, + "0/43/65533": 1, + "0/43/65528": [], + "0/43/65529": [], + "0/43/65531": [0, 1, 65528, 65529, 65531, 65532, 65533], + "0/44/0": 0, + "0/44/1": 0, + "0/44/2": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 7], + "0/44/65532": 0, + "0/44/65533": 1, + "0/44/65528": [], + "0/44/65529": [], + "0/44/65531": [0, 1, 2, 65528, 65529, 65531, 65532, 65533], + "0/48/0": 0, "0/48/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.BasicCommissioningInfo", - "attribute_name": "BasicCommissioningInfo", - "value": { - "failSafeExpiryLengthSeconds": 60, - "maxCumulativeFailsafeSeconds": 900 + "failSafeExpiryLengthSeconds": 60, + "maxCumulativeFailsafeSeconds": 900 + }, + "0/48/2": 0, + "0/48/3": 0, + "0/48/4": true, + "0/48/65532": 0, + "0/48/65533": 1, + "0/48/65528": [1, 3, 5], + "0/48/65529": [0, 2, 4], + "0/48/65531": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533], + "0/49/0": 1, + "0/49/1": [], + "0/49/2": 10, + "0/49/3": 30, + "0/49/4": true, + "0/49/5": 0, + "0/49/6": "bVdMQU4yLjQ=", + "0/49/7": null, + "0/49/65532": 1, + "0/49/65533": 1, + "0/49/65528": [1, 5, 7], + "0/49/65529": [0, 2, 4, 6, 8], + "0/49/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 65528, 65529, 65531, 65532, 65533 + ], + "0/50/65532": 0, + "0/50/65533": 1, + "0/50/65528": [1], + "0/50/65529": [0], + "0/50/65531": [65528, 65529, 65531, 65532, 65533], + "0/51/0": [ + { + "name": "WIFI_STA_DEF", + "isOperational": true, + "offPremiseServicesReachableIPv4": null, + "offPremiseServicesReachableIPv6": null, + "hardwareAddress": "YFX5V0js", + "IPv4Addresses": ["wKgBIw=="], + "IPv6Addresses": ["/oAAAAAAAABiVfn//ldI7A=="], + "type": 1 } - }, - "0/48/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.RegulatoryConfig", - "attribute_name": "RegulatoryConfig", - "value": 0 - }, - "0/48/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.LocationCapability", - "attribute_name": "LocationCapability", - "value": 0 - }, - "0/48/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.SupportsConcurrentConnection", - "attribute_name": "SupportsConcurrentConnection", - "value": true - }, - "0/48/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/48/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/48/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1, 3, 5] - }, - "0/48/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 2, 4] - }, - "0/48/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533] - }, - "0/49/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.MaxNetworks", - "attribute_name": "MaxNetworks", - "value": 1 - }, - "0/49/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.Networks", - "attribute_name": "Networks", - "value": [] - }, - "0/49/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.ScanMaxTimeSeconds", - "attribute_name": "ScanMaxTimeSeconds", - "value": 10 - }, - "0/49/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.ConnectMaxTimeSeconds", - "attribute_name": "ConnectMaxTimeSeconds", - "value": 30 - }, - "0/49/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.InterfaceEnabled", - "attribute_name": "InterfaceEnabled", - "value": true - }, - "0/49/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastNetworkingStatus", - "attribute_name": "LastNetworkingStatus", - "value": 0 - }, - "0/49/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastNetworkID", - "attribute_name": "LastNetworkID", - "value": "bVdMQU4yLjQ=" - }, - "0/49/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastConnectErrorValue", - "attribute_name": "LastConnectErrorValue", - "value": null - }, - "0/49/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "0/49/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/49/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1, 5, 7] - }, - "0/49/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 2, 4, 6, 8] - }, - "0/49/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 5, 6, 7, 65528, 65529, 65531, 65532, 65533] - }, - "0/50/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/50/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/50/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1] - }, - "0/50/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/50/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [65528, 65529, 65531, 65532, 65533] - }, - "0/51/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.NetworkInterfaces", - "attribute_name": "NetworkInterfaces", - "value": [ - { - "name": "WIFI_STA_DEF", - "isOperational": true, - "offPremiseServicesReachableIPv4": null, - "offPremiseServicesReachableIPv6": null, - "hardwareAddress": "YFX5V0js", - "IPv4Addresses": ["wKgBIw=="], - "IPv6Addresses": ["/oAAAAAAAABiVfn//ldI7A=="], - "type": 1 - } - ] - }, - "0/51/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.RebootCount", - "attribute_name": "RebootCount", - "value": 3 - }, - "0/51/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.UpTime", - "attribute_name": "UpTime", - "value": 213 - }, - "0/51/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.TotalOperationalHours", - "attribute_name": "TotalOperationalHours", - "value": 0 - }, - "0/51/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.BootReasons", - "attribute_name": "BootReasons", - "value": 1 - }, - "0/51/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveHardwareFaults", - "attribute_name": "ActiveHardwareFaults", - "value": [] - }, - "0/51/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveRadioFaults", - "attribute_name": "ActiveRadioFaults", - "value": [] - }, - "0/51/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveNetworkFaults", - "attribute_name": "ActiveNetworkFaults", - "value": [] - }, - "0/51/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.TestEventTriggersEnabled", - "attribute_name": "TestEventTriggersEnabled", - "value": false - }, - "0/51/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/51/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/51/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/51/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/51/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533 - ] - }, - "0/52/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.ThreadMetrics", - "attribute_name": "ThreadMetrics", - "value": [] - }, - "0/52/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.CurrentHeapFree", - "attribute_name": "CurrentHeapFree", - "value": 166660 - }, - "0/52/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.CurrentHeapUsed", - "attribute_name": "CurrentHeapUsed", - "value": 86332 - }, - "0/52/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.CurrentHeapHighWatermark", - "attribute_name": "CurrentHeapHighWatermark", - "value": 99208 - }, - "0/52/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/52/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/52/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/52/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/52/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/53/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.Channel", - "attribute_name": "Channel", - "value": { - "TLVValue": null, - "Reason": null + ], + "0/51/1": 3, + "0/51/2": 213, + "0/51/3": 0, + "0/51/4": 1, + "0/51/5": [], + "0/51/6": [], + "0/51/7": [], + "0/51/8": false, + "0/51/65532": 0, + "0/51/65533": 1, + "0/51/65528": [], + "0/51/65529": [0], + "0/51/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533 + ], + "0/52/0": [], + "0/52/1": 166660, + "0/52/2": 86332, + "0/52/3": 99208, + "0/52/65532": 0, + "0/52/65533": 1, + "0/52/65528": [], + "0/52/65529": [], + "0/52/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/53/0": null, + "0/53/1": null, + "0/53/2": null, + "0/53/3": null, + "0/53/4": null, + "0/53/5": null, + "0/53/6": null, + "0/53/7": null, + "0/53/8": null, + "0/53/9": null, + "0/53/10": null, + "0/53/11": null, + "0/53/12": null, + "0/53/13": null, + "0/53/14": null, + "0/53/15": null, + "0/53/16": null, + "0/53/17": null, + "0/53/18": null, + "0/53/19": null, + "0/53/20": null, + "0/53/21": null, + "0/53/22": null, + "0/53/23": null, + "0/53/24": null, + "0/53/25": null, + "0/53/26": null, + "0/53/27": null, + "0/53/28": null, + "0/53/29": null, + "0/53/30": null, + "0/53/31": null, + "0/53/32": null, + "0/53/33": null, + "0/53/34": null, + "0/53/35": null, + "0/53/36": null, + "0/53/37": null, + "0/53/38": null, + "0/53/39": null, + "0/53/40": null, + "0/53/41": null, + "0/53/42": null, + "0/53/43": null, + "0/53/44": null, + "0/53/45": null, + "0/53/46": null, + "0/53/47": null, + "0/53/48": null, + "0/53/49": null, + "0/53/50": null, + "0/53/51": null, + "0/53/52": null, + "0/53/53": null, + "0/53/54": null, + "0/53/55": null, + "0/53/56": null, + "0/53/57": null, + "0/53/58": null, + "0/53/59": null, + "0/53/60": null, + "0/53/61": null, + "0/53/62": null, + "0/53/65532": 15, + "0/53/65533": 1, + "0/53/65528": [], + "0/53/65529": [0], + "0/53/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, + 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, + 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, + 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 65528, 65529, 65531, 65532, + 65533 + ], + "0/54/0": "BKFR27h1", + "0/54/1": 4, + "0/54/2": 3, + "0/54/3": 3, + "0/54/4": -56, + "0/54/5": null, + "0/54/6": null, + "0/54/7": null, + "0/54/8": null, + "0/54/9": null, + "0/54/10": null, + "0/54/11": null, + "0/54/12": null, + "0/54/65532": 3, + "0/54/65533": 1, + "0/54/65528": [], + "0/54/65529": [0], + "0/54/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 65528, 65529, 65531, + 65532, 65533 + ], + "0/55/0": null, + "0/55/1": null, + "0/55/2": 0, + "0/55/3": 0, + "0/55/4": 0, + "0/55/5": 0, + "0/55/6": 0, + "0/55/7": null, + "0/55/8": 0, + "0/55/65532": 3, + "0/55/65533": 1, + "0/55/65528": [], + "0/55/65529": [0], + "0/55/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533 + ], + "0/59/65532": 0, + "0/59/65533": 1, + "0/59/65528": [], + "0/59/65529": [], + "0/59/65531": [65528, 65529, 65531, 65532, 65533], + "0/60/0": 0, + "0/60/1": null, + "0/60/2": null, + "0/60/65532": 0, + "0/60/65533": 1, + "0/60/65528": [], + "0/60/65529": [0, 1, 2], + "0/60/65531": [0, 1, 2, 65528, 65529, 65531, 65532, 65533], + "0/62/0": [ + { + "noc": "FTABAQEkAgE3AyQTAhgmBIAigScmBYAlTTo3BiQVASQRBRgkBwEkCAEwCUEEELwf3lni0ez0mRGa/z9gFtuTfn3Gpnsq/rBvQmpgjxqgC0RNcZmHfAm176H0j6ENQrnc1RhkKA5qiJtEgzQF4DcKNQEoARgkAgE2AwQCBAEYMAQURdGBtNYpheXbKDo2Od5OLDCytacwBRQc+rrVsNzRFL1V9i4OFnGKrwIajRgwC0AG9mdYqL5WJ0jKIBcEzeWQbo8xg6sFv0ANmq0KSpMbfqVvw8Y39XEOQ6B8v+JCXSGMpdPC0nbVQKuv/pKUvJoTGA==", + "icac": "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQTAhgkBwEkCAEwCUEEWYzjmQq/3zCbWfMKR0asASVnOBOkNAzdwdW1X6sC0zA5m3DhGRMEff09ZqHDZi/o6CW+I+rEGNEyW+00/M84azcKNQEpARgkAmAwBBQc+rrVsNzRFL1V9i4OFnGKrwIajTAFFI6CuLTopCFiBYeGuUcP8Ak5Jo3gGDALQDYMHSAwxZPP4TFqIGot2vm5+Wir58quxbojkWwyT9l8eat6f9sJmjTZ0VLggTwAWvY+IVm82YuMzTPxmkNWxVIY", + "fabricIndex": 1 } - }, - "0/53/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RoutingRole", - "attribute_name": "RoutingRole", - "value": { - "TLVValue": null, - "Reason": null + ], + "0/62/1": [ + { + "rootPublicKey": "BALNCzn2XOp1NrwszT+LOLYT+tM76+Pob8AIOFl9+0UWFsLp4ZHUainZZMJQIAHxv39srVUYW0+nacFcjHTzNHw=", + "vendorId": 65521, + "fabricId": 1, + "nodeId": 5, + "label": "", + "fabricIndex": 1 } - }, - "0/53/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.NetworkName", - "attribute_name": "NetworkName", - "value": { - "TLVValue": null, - "Reason": null + ], + "0/62/2": 5, + "0/62/3": 1, + "0/62/4": [ + "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQUARgkBwEkCAEwCUEEAs0LOfZc6nU2vCzNP4s4thP60zvr4+hvwAg4WX37RRYWwunhkdRqKdlkwlAgAfG/f2ytVRhbT6dpwVyMdPM0fDcKNQEpARgkAmAwBBSOgri06KQhYgWHhrlHD/AJOSaN4DAFFI6CuLTopCFiBYeGuUcP8Ak5Jo3gGDALQGxeigcXo8H7pmRHCOma3uT688xoreaDwV8JfFUMUnHUvqg+2GNzFtvfD6MkDaYVPghsXjITZLv5qsHhrUaIO7QY" + ], + "0/62/5": 1, + "0/62/65532": 0, + "0/62/65533": 1, + "0/62/65528": [1, 3, 5, 8], + "0/62/65529": [0, 2, 4, 6, 7, 9, 10, 11], + "0/62/65531": [0, 1, 2, 3, 4, 5, 65528, 65529, 65531, 65532, 65533], + "0/63/0": [], + "0/63/1": [], + "0/63/2": 3, + "0/63/3": 3, + "0/63/65532": 0, + "0/63/65533": 1, + "0/63/65528": [2, 5], + "0/63/65529": [0, 1, 3, 4], + "0/63/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/64/0": [ + { + "label": "room", + "value": "bedroom 2" + }, + { + "label": "orientation", + "value": "North" + }, + { + "label": "floor", + "value": "2" + }, + { + "label": "direction", + "value": "up" } - }, - "0/53/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PanId", - "attribute_name": "PanId", - "value": { - "TLVValue": null, - "Reason": null + ], + "0/64/65532": 0, + "0/64/65533": 1, + "0/64/65528": [], + "0/64/65529": [], + "0/64/65531": [0, 65528, 65529, 65531, 65532, 65533], + "0/65/0": [], + "0/65/65532": 0, + "0/65/65533": 1, + "0/65/65528": [], + "0/65/65529": [], + "0/65/65531": [0, 65528, 65529, 65531, 65532, 65533], + "1/3/0": 0, + "1/3/1": 0, + "1/3/65532": 0, + "1/3/65533": 4, + "1/3/65528": [], + "1/3/65529": [0, 64], + "1/3/65531": [0, 1, 65528, 65529, 65531, 65532, 65533], + "1/4/0": 128, + "1/4/65532": 1, + "1/4/65533": 4, + "1/4/65528": [0, 1, 2, 3], + "1/4/65529": [0, 1, 2, 3, 4, 5], + "1/4/65531": [0, 65528, 65529, 65531, 65532, 65533], + "1/6/0": false, + "1/6/16384": true, + "1/6/16385": 0, + "1/6/16386": 0, + "1/6/16387": null, + "1/6/65532": 1, + "1/6/65533": 4, + "1/6/65528": [], + "1/6/65529": [0, 1, 2, 64, 65, 66], + "1/6/65531": [ + 0, 16384, 16385, 16386, 16387, 65528, 65529, 65531, 65532, 65533 + ], + "1/8/0": 254, + "1/8/1": 0, + "1/8/2": 1, + "1/8/3": 254, + "1/8/4": 0, + "1/8/5": 0, + "1/8/6": 0, + "1/8/15": 0, + "1/8/16": 0, + "1/8/17": null, + "1/8/18": 0, + "1/8/19": 0, + "1/8/20": 50, + "1/8/16384": null, + "1/8/65532": 3, + "1/8/65533": 5, + "1/8/65528": [], + "1/8/65529": [0, 1, 2, 3, 4, 5, 6, 7], + "1/8/65531": [ + 0, 1, 2, 3, 4, 5, 6, 15, 16, 17, 18, 19, 20, 16384, 65528, 65529, + 65531, 65532, 65533 + ], + "1/29/0": [ + { + "type": 257, + "revision": 1 } - }, - "0/53/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ExtendedPanId", - "attribute_name": "ExtendedPanId", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.MeshLocalPrefix", - "attribute_name": "MeshLocalPrefix", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.OverrunCount", - "attribute_name": "OverrunCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.NeighborTableList", - "attribute_name": "NeighborTableList", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RouteTableList", - "attribute_name": "RouteTableList", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/9": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PartitionId", - "attribute_name": "PartitionId", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/10": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.Weighting", - "attribute_name": "Weighting", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/11": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.DataVersion", - "attribute_name": "DataVersion", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/12": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.StableDataVersion", - "attribute_name": "StableDataVersion", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/13": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.LeaderRouterId", - "attribute_name": "LeaderRouterId", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/14": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.DetachedRoleCount", - "attribute_name": "DetachedRoleCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/15": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ChildRoleCount", - "attribute_name": "ChildRoleCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/16": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RouterRoleCount", - "attribute_name": "RouterRoleCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/17": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.LeaderRoleCount", - "attribute_name": "LeaderRoleCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/18": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.AttachAttemptCount", - "attribute_name": "AttachAttemptCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/19": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PartitionIdChangeCount", - "attribute_name": "PartitionIdChangeCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/20": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 20, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.BetterPartitionAttachAttemptCount", - "attribute_name": "BetterPartitionAttachAttemptCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/21": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 21, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ParentChangeCount", - "attribute_name": "ParentChangeCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/22": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 22, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxTotalCount", - "attribute_name": "TxTotalCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/23": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 23, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxUnicastCount", - "attribute_name": "TxUnicastCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/24": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 24, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxBroadcastCount", - "attribute_name": "TxBroadcastCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/25": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 25, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxAckRequestedCount", - "attribute_name": "TxAckRequestedCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/26": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 26, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxAckedCount", - "attribute_name": "TxAckedCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/27": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 27, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxNoAckRequestedCount", - "attribute_name": "TxNoAckRequestedCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/28": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 28, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxDataCount", - "attribute_name": "TxDataCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/29": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 29, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxDataPollCount", - "attribute_name": "TxDataPollCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/30": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 30, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxBeaconCount", - "attribute_name": "TxBeaconCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/31": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 31, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxBeaconRequestCount", - "attribute_name": "TxBeaconRequestCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/32": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 32, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxOtherCount", - "attribute_name": "TxOtherCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/33": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 33, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxRetryCount", - "attribute_name": "TxRetryCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/34": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 34, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxDirectMaxRetryExpiryCount", - "attribute_name": "TxDirectMaxRetryExpiryCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/35": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 35, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxIndirectMaxRetryExpiryCount", - "attribute_name": "TxIndirectMaxRetryExpiryCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/36": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 36, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxErrCcaCount", - "attribute_name": "TxErrCcaCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/37": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 37, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxErrAbortCount", - "attribute_name": "TxErrAbortCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/38": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 38, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxErrBusyChannelCount", - "attribute_name": "TxErrBusyChannelCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/39": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 39, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxTotalCount", - "attribute_name": "RxTotalCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/40": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 40, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxUnicastCount", - "attribute_name": "RxUnicastCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/41": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 41, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxBroadcastCount", - "attribute_name": "RxBroadcastCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/42": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 42, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDataCount", - "attribute_name": "RxDataCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/43": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 43, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDataPollCount", - "attribute_name": "RxDataPollCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/44": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 44, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxBeaconCount", - "attribute_name": "RxBeaconCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/45": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 45, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxBeaconRequestCount", - "attribute_name": "RxBeaconRequestCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/46": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 46, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxOtherCount", - "attribute_name": "RxOtherCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/47": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 47, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxAddressFilteredCount", - "attribute_name": "RxAddressFilteredCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/48": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 48, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDestAddrFilteredCount", - "attribute_name": "RxDestAddrFilteredCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/49": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 49, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDuplicatedCount", - "attribute_name": "RxDuplicatedCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/50": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 50, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrNoFrameCount", - "attribute_name": "RxErrNoFrameCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/51": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 51, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrUnknownNeighborCount", - "attribute_name": "RxErrUnknownNeighborCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/52": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 52, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrInvalidSrcAddrCount", - "attribute_name": "RxErrInvalidSrcAddrCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/53": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 53, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrSecCount", - "attribute_name": "RxErrSecCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/54": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 54, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrFcsCount", - "attribute_name": "RxErrFcsCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/55": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 55, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrOtherCount", - "attribute_name": "RxErrOtherCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/56": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 56, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ActiveTimestamp", - "attribute_name": "ActiveTimestamp", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/57": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 57, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PendingTimestamp", - "attribute_name": "PendingTimestamp", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/58": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 58, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.Delay", - "attribute_name": "Delay", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/59": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 59, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.SecurityPolicy", - "attribute_name": "SecurityPolicy", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/60": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 60, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ChannelPage0Mask", - "attribute_name": "ChannelPage0Mask", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/61": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 61, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.OperationalDatasetComponents", - "attribute_name": "OperationalDatasetComponents", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/62": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 62, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ActiveNetworkFaultsList", - "attribute_name": "ActiveNetworkFaultsList", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 15 - }, - "0/53/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/53/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/53/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/53/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, - 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, - 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, - 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 65528, 65529, - 65531, 65532, 65533 - ] - }, - "0/54/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.Bssid", - "attribute_name": "Bssid", - "value": "BKFR27h1" - }, - "0/54/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.SecurityType", - "attribute_name": "SecurityType", - "value": 4 - }, - "0/54/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.WiFiVersion", - "attribute_name": "WiFiVersion", - "value": 3 - }, - "0/54/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.ChannelNumber", - "attribute_name": "ChannelNumber", - "value": 3 - }, - "0/54/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.Rssi", - "attribute_name": "Rssi", - "value": -56 - }, - "0/54/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.BeaconLostCount", - "attribute_name": "BeaconLostCount", - "value": null - }, - "0/54/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.BeaconRxCount", - "attribute_name": "BeaconRxCount", - "value": null - }, - "0/54/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketMulticastRxCount", - "attribute_name": "PacketMulticastRxCount", - "value": null - }, - "0/54/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketMulticastTxCount", - "attribute_name": "PacketMulticastTxCount", - "value": null - }, - "0/54/9": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketUnicastRxCount", - "attribute_name": "PacketUnicastRxCount", - "value": null - }, - "0/54/10": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketUnicastTxCount", - "attribute_name": "PacketUnicastTxCount", - "value": null - }, - "0/54/11": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.CurrentMaxRate", - "attribute_name": "CurrentMaxRate", - "value": null - }, - "0/54/12": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.OverrunCount", - "attribute_name": "OverrunCount", - "value": null - }, - "0/54/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 3 - }, - "0/54/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/54/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/54/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/54/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 65528, 65529, 65531, - 65532, 65533 - ] - }, - "0/55/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.PHYRate", - "attribute_name": "PHYRate", - "value": null - }, - "0/55/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.FullDuplex", - "attribute_name": "FullDuplex", - "value": null - }, - "0/55/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.PacketRxCount", - "attribute_name": "PacketRxCount", - "value": 0 - }, - "0/55/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.PacketTxCount", - "attribute_name": "PacketTxCount", - "value": 0 - }, - "0/55/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.TxErrCount", - "attribute_name": "TxErrCount", - "value": 0 - }, - "0/55/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.CollisionCount", - "attribute_name": "CollisionCount", - "value": 0 - }, - "0/55/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.OverrunCount", - "attribute_name": "OverrunCount", - "value": 0 - }, - "0/55/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.CarrierDetect", - "attribute_name": "CarrierDetect", - "value": null - }, - "0/55/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.TimeSinceReset", - "attribute_name": "TimeSinceReset", - "value": 0 - }, - "0/55/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 3 - }, - "0/55/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/55/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/55/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/55/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533 - ] - }, - "0/59/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/59/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/59/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/59/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/59/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [65528, 65529, 65531, 65532, 65533] - }, - "0/60/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.WindowStatus", - "attribute_name": "WindowStatus", - "value": 0 - }, - "0/60/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AdminFabricIndex", - "attribute_name": "AdminFabricIndex", - "value": null - }, - "0/60/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AdminVendorId", - "attribute_name": "AdminVendorId", - "value": null - }, - "0/60/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/60/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/60/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/60/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2] - }, - "0/60/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] - }, - "0/62/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.NOCs", - "attribute_name": "NOCs", - "value": [ - { - "noc": "FTABAQEkAgE3AyQTAhgmBIAigScmBYAlTTo3BiQVASQRBRgkBwEkCAEwCUEEELwf3lni0ez0mRGa/z9gFtuTfn3Gpnsq/rBvQmpgjxqgC0RNcZmHfAm176H0j6ENQrnc1RhkKA5qiJtEgzQF4DcKNQEoARgkAgE2AwQCBAEYMAQURdGBtNYpheXbKDo2Od5OLDCytacwBRQc+rrVsNzRFL1V9i4OFnGKrwIajRgwC0AG9mdYqL5WJ0jKIBcEzeWQbo8xg6sFv0ANmq0KSpMbfqVvw8Y39XEOQ6B8v+JCXSGMpdPC0nbVQKuv/pKUvJoTGA==", - "icac": "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQTAhgkBwEkCAEwCUEEWYzjmQq/3zCbWfMKR0asASVnOBOkNAzdwdW1X6sC0zA5m3DhGRMEff09ZqHDZi/o6CW+I+rEGNEyW+00/M84azcKNQEpARgkAmAwBBQc+rrVsNzRFL1V9i4OFnGKrwIajTAFFI6CuLTopCFiBYeGuUcP8Ak5Jo3gGDALQDYMHSAwxZPP4TFqIGot2vm5+Wir58quxbojkWwyT9l8eat6f9sJmjTZ0VLggTwAWvY+IVm82YuMzTPxmkNWxVIY", - "fabricIndex": 1 - } - ] - }, - "0/62/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.Fabrics", - "attribute_name": "Fabrics", - "value": [ - { - "rootPublicKey": "BALNCzn2XOp1NrwszT+LOLYT+tM76+Pob8AIOFl9+0UWFsLp4ZHUainZZMJQIAHxv39srVUYW0+nacFcjHTzNHw=", - "vendorId": 65521, - "fabricId": 1, - "nodeId": 5, - "label": "", - "fabricIndex": 1 - } - ] - }, - "0/62/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.SupportedFabrics", - "attribute_name": "SupportedFabrics", - "value": 5 - }, - "0/62/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.CommissionedFabrics", - "attribute_name": "CommissionedFabrics", - "value": 1 - }, - "0/62/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.TrustedRootCertificates", - "attribute_name": "TrustedRootCertificates", - "value": [ - "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQUARgkBwEkCAEwCUEEAs0LOfZc6nU2vCzNP4s4thP60zvr4+hvwAg4WX37RRYWwunhkdRqKdlkwlAgAfG/f2ytVRhbT6dpwVyMdPM0fDcKNQEpARgkAmAwBBSOgri06KQhYgWHhrlHD/AJOSaN4DAFFI6CuLTopCFiBYeGuUcP8Ak5Jo3gGDALQGxeigcXo8H7pmRHCOma3uT688xoreaDwV8JfFUMUnHUvqg+2GNzFtvfD6MkDaYVPghsXjITZLv5qsHhrUaIO7QY" - ] - }, - "0/62/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.CurrentFabricIndex", - "attribute_name": "CurrentFabricIndex", - "value": 1 - }, - "0/62/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/62/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/62/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1, 3, 5, 8] - }, - "0/62/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 2, 4, 6, 7, 9, 10, 11] - }, - "0/62/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 5, 65528, 65529, 65531, 65532, 65533] - }, - "0/63/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.GroupKeyMap", - "attribute_name": "GroupKeyMap", - "value": [] - }, - "0/63/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.GroupTable", - "attribute_name": "GroupTable", - "value": [] - }, - "0/63/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.MaxGroupsPerFabric", - "attribute_name": "MaxGroupsPerFabric", - "value": 3 - }, - "0/63/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.MaxGroupKeysPerFabric", - "attribute_name": "MaxGroupKeysPerFabric", - "value": 3 - }, - "0/63/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/63/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/63/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [2, 5] - }, - "0/63/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 3, 4] - }, - "0/63/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/64/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.LabelList", - "attribute_name": "LabelList", - "value": [ - { - "label": "room", - "value": "bedroom 2" - }, - { - "label": "orientation", - "value": "North" - }, - { - "label": "floor", - "value": "2" - }, - { - "label": "direction", - "value": "up" - } - ] - }, - "0/64/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/64/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/64/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/64/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/64/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - }, - "0/65/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.LabelList", - "attribute_name": "LabelList", - "value": [] - }, - "0/65/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/65/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/65/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/65/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/65/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - }, - "1/3/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.IdentifyTime", - "attribute_name": "IdentifyTime", - "value": 0 - }, - "1/3/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.IdentifyType", - "attribute_name": "IdentifyType", - "value": 0 - }, - "1/3/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "1/3/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "1/3/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/3/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 64] - }, - "1/3/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 65528, 65529, 65531, 65532, 65533] - }, - "1/4/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.NameSupport", - "attribute_name": "NameSupport", - "value": 128 - }, - "1/4/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "1/4/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "1/4/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [0, 1, 2, 3] - }, - "1/4/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 3, 4, 5] - }, - "1/4/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - }, - "1/6/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.OnOff", - "attribute_name": "OnOff", - "value": false - }, - "1/6/16384": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16384, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.GlobalSceneControl", - "attribute_name": "GlobalSceneControl", - "value": true - }, - "1/6/16385": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16385, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.OnTime", - "attribute_name": "OnTime", - "value": 0 - }, - "1/6/16386": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16386, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.OffWaitTime", - "attribute_name": "OffWaitTime", - "value": 0 - }, - "1/6/16387": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16387, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.StartUpOnOff", - "attribute_name": "StartUpOnOff", - "value": null - }, - "1/6/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "1/6/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "1/6/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/6/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 64, 65, 66] - }, - "1/6/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 16384, 16385, 16386, 16387, 65528, 65529, 65531, 65532, 65533 - ] - }, - "1/8/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.CurrentLevel", - "attribute_name": "CurrentLevel", - "value": 254 - }, - "1/8/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.RemainingTime", - "attribute_name": "RemainingTime", - "value": 0 - }, - "1/8/2": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.MinLevel", - "attribute_name": "MinLevel", - "value": 1 - }, - "1/8/3": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.MaxLevel", - "attribute_name": "MaxLevel", - "value": 254 - }, - "1/8/4": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.CurrentFrequency", - "attribute_name": "CurrentFrequency", - "value": 0 - }, - "1/8/5": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.MinFrequency", - "attribute_name": "MinFrequency", - "value": 0 - }, - "1/8/6": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.MaxFrequency", - "attribute_name": "MaxFrequency", - "value": 0 - }, - "1/8/15": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.Options", - "attribute_name": "Options", - "value": 0 - }, - "1/8/16": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.OnOffTransitionTime", - "attribute_name": "OnOffTransitionTime", - "value": 0 - }, - "1/8/17": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.OnLevel", - "attribute_name": "OnLevel", - "value": null - }, - "1/8/18": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.OnTransitionTime", - "attribute_name": "OnTransitionTime", - "value": 0 - }, - "1/8/19": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.OffTransitionTime", - "attribute_name": "OffTransitionTime", - "value": 0 - }, - "1/8/20": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 20, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.DefaultMoveRate", - "attribute_name": "DefaultMoveRate", - "value": 50 - }, - "1/8/16384": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 16384, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.StartUpCurrentLevel", - "attribute_name": "StartUpCurrentLevel", - "value": null - }, - "1/8/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 3 - }, - "1/8/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 5 - }, - "1/8/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/8/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 3, 4, 5, 6, 7] - }, - "1/8/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 15, 16, 17, 18, 19, 20, 16384, 65528, 65529, - 65531, 65532, 65533 - ] - }, - "1/29/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.DeviceTypeList", - "attribute_name": "DeviceTypeList", - "value": [ - { - "type": 257, - "revision": 1 - } - ] - }, - "1/29/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ServerList", - "attribute_name": "ServerList", - "value": [3, 4, 6, 8, 29, 768, 1030] - }, - "1/29/2": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClientList", - "attribute_name": "ClientList", - "value": [] - }, - "1/29/3": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.PartsList", - "attribute_name": "PartsList", - "value": [] - }, - "1/29/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "1/29/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "1/29/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/29/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "1/29/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "1/768/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentHue", - "attribute_name": "CurrentHue", - "value": 0 - }, - "1/768/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentSaturation", - "attribute_name": "CurrentSaturation", - "value": 0 - }, - "1/768/2": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.RemainingTime", - "attribute_name": "RemainingTime", - "value": 0 - }, - "1/768/3": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentX", - "attribute_name": "CurrentX", - "value": 24939 - }, - "1/768/4": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentY", - "attribute_name": "CurrentY", - "value": 24701 - }, - "1/768/7": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorTemperatureMireds", - "attribute_name": "ColorTemperatureMireds", - "value": 0 - }, - "1/768/8": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorMode", - "attribute_name": "ColorMode", - "value": 2 - }, - "1/768/15": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.Options", - "attribute_name": "Options", - "value": 0 - }, - "1/768/16": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.NumberOfPrimaries", - "attribute_name": "NumberOfPrimaries", - "value": 0 - }, - "1/768/16384": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16384, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.EnhancedCurrentHue", - "attribute_name": "EnhancedCurrentHue", - "value": 0 - }, - "1/768/16385": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16385, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.EnhancedColorMode", - "attribute_name": "EnhancedColorMode", - "value": 2 - }, - "1/768/16386": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16386, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopActive", - "attribute_name": "ColorLoopActive", - "value": 0 - }, - "1/768/16387": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16387, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopDirection", - "attribute_name": "ColorLoopDirection", - "value": 0 - }, - "1/768/16388": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16388, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopTime", - "attribute_name": "ColorLoopTime", - "value": 25 - }, - "1/768/16389": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16389, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopStartEnhancedHue", - "attribute_name": "ColorLoopStartEnhancedHue", - "value": 8960 - }, - "1/768/16390": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16390, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopStoredEnhancedHue", - "attribute_name": "ColorLoopStoredEnhancedHue", - "value": 0 - }, - "1/768/16394": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16394, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorCapabilities", - "attribute_name": "ColorCapabilities", - "value": 31 - }, - "1/768/16395": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16395, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorTempPhysicalMinMireds", - "attribute_name": "ColorTempPhysicalMinMireds", - "value": 0 - }, - "1/768/16396": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16396, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorTempPhysicalMaxMireds", - "attribute_name": "ColorTempPhysicalMaxMireds", - "value": 65279 - }, - "1/768/16397": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16397, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CoupleColorTempToLevelMinMireds", - "attribute_name": "CoupleColorTempToLevelMinMireds", - "value": 0 - }, - "1/768/16400": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16400, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.StartUpColorTemperatureMireds", - "attribute_name": "StartUpColorTemperatureMireds", - "value": 0 - }, - "1/768/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 31 - }, - "1/768/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 5 - }, - "1/768/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/768/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 64, 65, 66, 67, 68, 71, 75, 76 - ] - }, - "1/768/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 7, 8, 15, 16, 16384, 16385, 16386, 16387, 16388, - 16389, 16390, 16394, 16395, 16396, 16397, 16400, 65528, 65529, - 65531, 65532, 65533 - ] - }, - "1/1030/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.Occupancy", - "attribute_name": "Occupancy", - "value": 0 - }, - "1/1030/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.OccupancySensorType", - "attribute_name": "OccupancySensorType", - "value": 0 - }, - "1/1030/2": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.OccupancySensorTypeBitmap", - "attribute_name": "OccupancySensorTypeBitmap", - "value": 1 - }, - "1/1030/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "1/1030/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 3 - }, - "1/1030/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/1030/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "1/1030/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] - } + ], + "1/29/1": [3, 4, 6, 8, 29, 768, 1030], + "1/29/2": [], + "1/29/3": [], + "1/29/65532": 0, + "1/29/65533": 1, + "1/29/65528": [], + "1/29/65529": [], + "1/29/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "1/768/0": 0, + "1/768/1": 0, + "1/768/2": 0, + "1/768/3": 24939, + "1/768/4": 24701, + "1/768/7": 0, + "1/768/8": 2, + "1/768/15": 0, + "1/768/16": 0, + "1/768/16384": 0, + "1/768/16385": 2, + "1/768/16386": 0, + "1/768/16387": 0, + "1/768/16388": 25, + "1/768/16389": 8960, + "1/768/16390": 0, + "1/768/16394": 31, + "1/768/16395": 0, + "1/768/16396": 65279, + "1/768/16397": 0, + "1/768/16400": 0, + "1/768/65532": 31, + "1/768/65533": 5, + "1/768/65528": [], + "1/768/65529": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 64, 65, 66, 67, 68, 71, 75, 76 + ], + "1/768/65531": [ + 0, 1, 2, 3, 4, 7, 8, 15, 16, 16384, 16385, 16386, 16387, 16388, + 16389, 16390, 16394, 16395, 16396, 16397, 16400, 65528, 65529, + 65531, 65532, 65533 + ], + "1/1030/0": 0, + "1/1030/1": 0, + "1/1030/2": 1, + "1/1030/65532": 0, + "1/1030/65533": 3, + "1/1030/65528": [], + "1/1030/65529": [], + "1/1030/65531": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] }, - "endpoints": [0, 1], - "root_device_type_instance": { - "__type": "", - "repr": "" - }, - "aggregator_device_type_instance": null, - "device_type_instances": [ - { - "__type": "", - "repr": "" - } - ], - "node_devices": [ - { - "__type": "", - "repr": "" - } - ] + "available": true } ], "events": [] diff --git a/tests/components/matter/fixtures/nodes/color-temperature-light.json b/tests/components/matter/fixtures/nodes/color-temperature-light.json index c0a5a0d1d26..2155f20fe3a 100644 --- a/tests/components/matter/fixtures/nodes/color-temperature-light.json +++ b/tests/components/matter/fixtures/nodes/color-temperature-light.json @@ -2,2109 +2,316 @@ "node_id": 1, "date_commissioned": "2023-01-31T03:59:47.454727", "last_interview": "2023-01-31T03:59:47.454728", - "interview_version": 1, + "interview_version": 2, "attributes": { - "0/29/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.DeviceTypeList", - "attribute_name": "DeviceTypeList", - "value": [ - { - "type": 22, - "revision": 1 - } - ] - }, - "0/29/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ServerList", - "attribute_name": "ServerList", - "value": [29, 31, 40, 48, 49, 51, 60, 62, 63] - }, - "0/29/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClientList", - "attribute_name": "ClientList", - "value": [] - }, - "0/29/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.PartsList", - "attribute_name": "PartsList", - "value": [1, 2, 3, 4, 5, 6, 7] - }, - "0/29/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/29/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/29/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/29/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/29/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/31/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.Acl", - "attribute_name": "Acl", - "value": [ - { - "privilege": 5, - "authMode": 2, - "subjects": [112233], - "targets": null, - "fabricIndex": 52 - } - ] - }, - "0/31/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.Extension", - "attribute_name": "Extension", - "value": [] - }, - "0/31/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.SubjectsPerAccessControlEntry", - "attribute_name": "SubjectsPerAccessControlEntry", - "value": 4 - }, - "0/31/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.TargetsPerAccessControlEntry", - "attribute_name": "TargetsPerAccessControlEntry", - "value": 3 - }, - "0/31/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AccessControlEntriesPerFabric", - "attribute_name": "AccessControlEntriesPerFabric", - "value": 3 - }, - "0/31/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/31/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/31/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/31/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/31/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533] - }, - "0/40/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", - "attribute_name": "DataModelRevision", - "value": 1 - }, - "0/40/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", - "attribute_name": "VendorName", - "value": "Signify" - }, - "0/40/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", - "attribute_name": "VendorID", - "value": 4107 - }, - "0/40/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", - "attribute_name": "ProductName", - "value": "Mock Extended Color Light" - }, - "0/40/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", - "attribute_name": "ProductID", - "value": 2 - }, - "0/40/5": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", - "attribute_name": "NodeLabel", - "value": "Mock Color Temperature Light" - }, - "0/40/6": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", - "attribute_name": "Location", - "value": "**REDACTED**" - }, - "0/40/7": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", - "attribute_name": "HardwareVersion", - "value": 1 - }, - "0/40/8": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", - "attribute_name": "HardwareVersionString", - "value": "1" - }, - "0/40/9": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", - "attribute_name": "SoftwareVersion", - "value": 65536 - }, - "0/40/10": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", - "attribute_name": "SoftwareVersionString", - "value": "1.0.0" - }, - "0/40/17": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", - "attribute_name": "Reachable", - "value": true - }, - "0/40/18": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", - "attribute_name": "UniqueID", - "value": "mock-color-temperature-light" - }, + "0/29/0": [ + { + "type": 22, + "revision": 1 + } + ], + "0/29/1": [29, 31, 40, 48, 49, 51, 60, 62, 63], + "0/29/2": [], + "0/29/3": [1, 2, 3, 4, 5, 6, 7], + "0/29/65532": 0, + "0/29/65533": 1, + "0/29/65528": [], + "0/29/65529": [], + "0/29/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/31/0": [ + { + "privilege": 5, + "authMode": 2, + "subjects": [112233], + "targets": null, + "fabricIndex": 52 + } + ], + "0/31/1": [], + "0/31/2": 4, + "0/31/3": 3, + "0/31/4": 3, + "0/31/65532": 0, + "0/31/65533": 1, + "0/31/65528": [], + "0/31/65529": [], + "0/31/65531": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533], + "0/40/0": 1, + "0/40/1": "Signify", + "0/40/2": 4107, + "0/40/3": "Mock Extended Color Light", + "0/40/4": 2, + "0/40/5": "Mock Color Temperature Light", + "0/40/6": "**REDACTED**", + "0/40/7": 1, + "0/40/8": "1", + "0/40/9": 65536, + "0/40/10": "1.0.0", + "0/40/17": true, + "0/40/18": "mock-color-temperature-light", "0/40/19": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", - "attribute_name": "CapabilityMinima", - "value": { - "caseSessionsPerFabric": 3, - "subscriptionsPerFabric": 65535 - } - }, - "0/40/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/40/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/40/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/40/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/40/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "BasicInformation", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 17, 18, 19, 65528, 65529, 65531, - 65532, 65533 - ] - }, - "0/48/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.Breadcrumb", - "attribute_name": "Breadcrumb", - "value": 0 + "caseSessionsPerFabric": 3, + "subscriptionsPerFabric": 65535 }, + "0/40/65532": 0, + "0/40/65533": 1, + "0/40/65528": [], + "0/40/65529": [], + "0/40/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 17, 18, 19, 65528, 65529, 65531, 65532, + 65533 + ], + "0/48/0": 0, "0/48/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.BasicCommissioningInfo", - "attribute_name": "BasicCommissioningInfo", - "value": { - "failSafeExpiryLengthSeconds": 60, - "maxCumulativeFailsafeSeconds": 900 + "failSafeExpiryLengthSeconds": 60, + "maxCumulativeFailsafeSeconds": 900 + }, + "0/48/2": 2, + "0/48/3": 2, + "0/48/4": true, + "0/48/65532": 0, + "0/48/65533": 1, + "0/48/65528": [1, 3, 5], + "0/48/65529": [0, 2, 4], + "0/48/65531": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533], + "0/49/0": 1, + "0/49/1": [ + { + "networkID": "ZXRoMA==", + "connected": true } - }, - "0/48/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.RegulatoryConfig", - "attribute_name": "RegulatoryConfig", - "value": 2 - }, - "0/48/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.LocationCapability", - "attribute_name": "LocationCapability", - "value": 2 - }, - "0/48/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.SupportsConcurrentConnection", - "attribute_name": "SupportsConcurrentConnection", - "value": true - }, - "0/48/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/48/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/48/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1, 3, 5] - }, - "0/48/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 2, 4] - }, - "0/48/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533] - }, - "0/49/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.MaxNetworks", - "attribute_name": "MaxNetworks", - "value": 1 - }, - "0/49/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.Networks", - "attribute_name": "Networks", - "value": [ - { - "networkID": "ZXRoMA==", - "connected": true - } - ] - }, - "0/49/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.InterfaceEnabled", - "attribute_name": "InterfaceEnabled", - "value": true - }, - "0/49/5": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastNetworkingStatus", - "attribute_name": "LastNetworkingStatus", - "value": null - }, - "0/49/6": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastNetworkID", - "attribute_name": "LastNetworkID", - "value": null - }, - "0/49/7": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastConnectErrorValue", - "attribute_name": "LastConnectErrorValue", - "value": null - }, - "0/49/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 4 - }, - "0/49/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/49/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/49/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/49/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 4, 5, 6, 7, 65528, 65529, 65531, 65532, 65533] - }, - "0/51/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.NetworkInterfaces", - "attribute_name": "NetworkInterfaces", - "value": [ - { - "name": "eth1", - "isOperational": true, - "offPremiseServicesReachableIPv4": null, - "offPremiseServicesReachableIPv6": null, - "hardwareAddress": "ABeILIy4", - "IPv4Addresses": ["CjwBuw=="], - "IPv6Addresses": [ - "/VqgxiAxQiYCF4j//iyMuA==", - "IAEEcLs7AAYCF4j//iyMuA==", - "/oAAAAAAAAACF4j//iyMuA==" - ], - "type": 0 - }, - { - "name": "eth0", - "isOperational": false, - "offPremiseServicesReachableIPv4": null, - "offPremiseServicesReachableIPv6": null, - "hardwareAddress": "AAN/ESDO", - "IPv4Addresses": [], - "IPv6Addresses": [], - "type": 2 - }, - { - "name": "lo", - "isOperational": true, - "offPremiseServicesReachableIPv4": null, - "offPremiseServicesReachableIPv6": null, - "hardwareAddress": "AAAAAAAA", - "IPv4Addresses": ["fwAAAQ=="], - "IPv6Addresses": ["AAAAAAAAAAAAAAAAAAAAAQ=="], - "type": 0 - } - ] - }, - "0/51/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.RebootCount", - "attribute_name": "RebootCount", - "value": 4 - }, - "0/51/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.UpTime", - "attribute_name": "UpTime", - "value": 834681 - }, - "0/51/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.TotalOperationalHours", - "attribute_name": "TotalOperationalHours", - "value": 231 - }, - "0/51/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.BootReasons", - "attribute_name": "BootReasons", - "value": 0 - }, - "0/51/5": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveHardwareFaults", - "attribute_name": "ActiveHardwareFaults", - "value": [] - }, - "0/51/6": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveRadioFaults", - "attribute_name": "ActiveRadioFaults", - "value": [] - }, - "0/51/7": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveNetworkFaults", - "attribute_name": "ActiveNetworkFaults", - "value": [] - }, - "0/51/8": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.TestEventTriggersEnabled", - "attribute_name": "TestEventTriggersEnabled", - "value": false - }, - "0/51/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/51/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/51/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/51/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/51/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533] - }, - "0/60/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.WindowStatus", - "attribute_name": "WindowStatus", - "value": 0 - }, - "0/60/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AdminFabricIndex", - "attribute_name": "AdminFabricIndex", - "value": null - }, - "0/60/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AdminVendorId", - "attribute_name": "AdminVendorId", - "value": null - }, - "0/60/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/60/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/60/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/60/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2] - }, - "0/60/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] - }, - "0/62/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.NOCs", - "attribute_name": "NOCs", - "value": [ - { - "noc": "FTABAQEkAgE3AyQTAhgmBIAigScmBYAlTTo3BiQVASQRARgkBwEkCAEwCUEEYGMAhVV+Adasucgyi++1D7eyBIfHs9xLKJPVJqJdMAqt0S8lQs+6v/NAyAVXsN8jdGlNgZQENRnfqC2gXv3COzcKNQEoARgkAgE2AwQCBAEYMAQUTK/GvAzp9yCT0ihFRaEyW8KuO0IwBRQ5RmCO0h/Cd/uv6Pe62ZSLBzXOtBgwC0CaO1hqAR9PQJUkSx4MQyHEDQND/3j7m6EPRImPCA53dKI7e4w7xZEQEW95oMhuUobdy3WbMcggAMTX46ninwqUGA==", - "icac": "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQTAhgkBwEkCAEwCUEEqboEMvSYpJHvrznp5AQ1fHW0AVUrTajBHZ/2uba7+FTyPb+fqgf6K1zbuMqTxTOA/FwjzAL7hQTwG+HNnmLwNTcKNQEpARgkAmAwBBQ5RmCO0h/Cd/uv6Pe62ZSLBzXOtDAFFG02YRl97W++GsAiEiBzIhO0hzA6GDALQBl+ZyFbSXu3oXVJGBjtDcpwOCRC30OaVjDhUT7NbohDLaKuwxMhAgE+uHtSLKRZPGlQGSzYdnDGj/dWolGE+n4Y", - "fabricIndex": 52 - } - ] - }, - "0/62/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.Fabrics", - "attribute_name": "Fabrics", - "value": [ - { - "rootPublicKey": "BOI8+YJvCUh78+5WD4aHD7t1HQJS3WMrCEknk6n+5HXP2VRMB3SvK6+EEa8rR6UkHnCryIREeOmS0XYozzHjTQg=", - "vendorId": 65521, - "fabricId": 1, - "nodeId": 1, - "label": "", - "fabricIndex": 52 - } - ] - }, - "0/62/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.SupportedFabrics", - "attribute_name": "SupportedFabrics", - "value": 16 - }, - "0/62/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.CommissionedFabrics", - "attribute_name": "CommissionedFabrics", - "value": 4 - }, - "0/62/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.TrustedRootCertificates", - "attribute_name": "TrustedRootCertificates", - "value": [ - "FTABAQAkAgE3AycUF+1s7yUxl34kFQEYJgRAwC8rJgXA8xAtNwYnFBftbO8lMZd+JBUBGCQHASQIATAJQQRVFfH8a8Q6Ao7WLf+UWfO6Qs7yilIhKqD59s89ORO1UFw4ge7hwKMSFn8ixUw/SolOQBSsCF4L0mSEatBpsDFnNwo1ASkBGCQCYDAEFPrNGEmgHq6sOVn/hmBwy/Vue7r0MAUU+s0YSaAerqw5Wf+GYHDL9W57uvQYMAtAZthavHRZnzQlRYALrcnL/6oo5LlVEot5CBGjqdoD/j6tvJcsTbqGqtv2H5GL4DC5KRNAE5ZmyqaQDMp3hZMrMxg=", - "FTABAQAkAgE3AycUfHqQXNhPx0gkFQIYJgRtwC8rJgXt8xAtNwYnFHx6kFzYT8dIJBUCGCQHASQIATAJQQQNBDXlacZCe3oZcAfbwCvm06XcQzAC287XzRvF/RLV/fkpY0xOgTn6WYEYvThhqRF2B1WApMsQ59+WAo0X9igONwo1ASkBGCQCYDAEFEabr60b38Ymu5LyDvqUx3o0SI7xMAUURpuvrRvfxia7kvIO+pTHejRIjvEYMAtAhtqVBW7tg1C0F3w0a3mQ5uirN8UFAqgTYDh45HoqZv+NuAkF3tUI8bcIZZ/QxLu5C6GcK7KYlT3peRpNIyBCOBg=", - "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQUARgkBwEkCAEwCUEE4jz5gm8JSHvz7lYPhocPu3UdAlLdYysISSeTqf7kdc/ZVEwHdK8rr4QRrytHpSQecKvIhER46ZLRdijPMeNNCDcKNQEpARgkAmAwBBRtNmEZfe1vvhrAIhIgcyITtIcwOjAFFG02YRl97W++GsAiEiBzIhO0hzA6GDALQPowt7QmngLyiuBmOVcu/kv3QR/+HhfRPxN5W8E811lBhPX4qEpvsBdEzJS0SpiQh+Fql+ARHzUGuIKP6SqjCnMY", - "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQUARgkBwEkCAEwCUEEOXNb0qzX1XBSquJ+bK0cuBsQl9aY/aBJ5njrCywf1qBz9W+54CQc4Lz5FtNzAhV7B6C3NppGozNUiSoAsL55ATcKNQEpARgkAmAwBBSWJBXzLVqg+IBcPntxiV91YIS0yDAFFJYkFfMtWqD4gFw+e3GJX3VghLTIGDALQIx8UTwGL2Ios2ym0C36ZrBPU7x7dw9zxCMKiuiDeEtdqcrKE7W/aaQ8/Mg2jszd7mqe/qq5y3yq3V6a8tQjrD0Y" - ] - }, - "0/62/5": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.CurrentFabricIndex", - "attribute_name": "CurrentFabricIndex", - "value": 52 - }, - "0/62/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/62/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/62/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1, 3, 5, 8] - }, - "0/62/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 2, 4, 6, 7, 9, 10, 11] - }, - "0/62/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 5, 65528, 65529, 65531, 65532, 65533] - }, - "0/63/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.GroupKeyMap", - "attribute_name": "GroupKeyMap", - "value": [] - }, - "0/63/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.GroupTable", - "attribute_name": "GroupTable", - "value": [] - }, - "0/63/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.MaxGroupsPerFabric", - "attribute_name": "MaxGroupsPerFabric", - "value": 3 - }, - "0/63/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.MaxGroupKeysPerFabric", - "attribute_name": "MaxGroupKeysPerFabric", - "value": 3 - }, - "0/63/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/63/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [2, 5] - }, - "0/63/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 3, 4] - }, - "0/63/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65533] - }, - "1/6/0": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.OnOff", - "attribute_name": "OnOff", - "value": true - }, - "1/6/16384": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16384, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.GlobalSceneControl", - "attribute_name": "GlobalSceneControl", - "value": true - }, - "1/6/16385": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16385, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.OnTime", - "attribute_name": "OnTime", - "value": 0 - }, - "1/6/16386": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16386, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.OffWaitTime", - "attribute_name": "OffWaitTime", - "value": 0 - }, - "1/6/16387": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16387, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.StartUpOnOff", - "attribute_name": "StartUpOnOff", - "value": null - }, - "1/6/65532": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "1/6/65533": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "1/6/65528": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/6/65529": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 64, 65, 66] - }, - "1/6/65531": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 16384, 16385, 16386, 16387, 65528, 65529, 65531, 65532, 65533 - ] - }, - "1/29/0": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.DeviceTypeList", - "attribute_name": "DeviceTypeList", - "value": [ - { - "type": 268, - "revision": 1 - } - ] - }, - "1/29/1": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ServerList", - "attribute_name": "ServerList", - "value": [6, 29, 57, 768, 8, 80, 3, 4] - }, - "1/29/2": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClientList", - "attribute_name": "ClientList", - "value": [] - }, - "1/29/3": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.PartsList", - "attribute_name": "PartsList", - "value": [] - }, - "1/29/65533": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "1/29/65528": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/29/65529": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "1/29/65531": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65533] - }, - "1/768/0": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentHue", - "attribute_name": "CurrentHue", - "value": 36 - }, - "1/768/3": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentX", - "attribute_name": "CurrentX", - "value": 26515 - }, - "1/768/4": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentY", - "attribute_name": "CurrentY", - "value": 25657 - }, - "1/768/7": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorTemperatureMireds", - "attribute_name": "ColorTemperatureMireds", - "value": 284 - }, - "1/768/1": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentSaturation", - "attribute_name": "CurrentSaturation", - "value": 51 - }, - "1/768/16384": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16384, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.EnhancedCurrentHue", - "attribute_name": "EnhancedCurrentHue", - "value": 9305 - }, - "1/768/8": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorMode", - "attribute_name": "ColorMode", - "value": 0 - }, - "1/768/15": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.Options", - "attribute_name": "Options", - "value": 0 - }, - "1/768/16385": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16385, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.EnhancedColorMode", - "attribute_name": "EnhancedColorMode", - "value": 0 - }, + ], + "0/49/4": true, + "0/49/5": null, + "0/49/6": null, + "0/49/7": null, + "0/49/65532": 4, + "0/49/65533": 1, + "0/49/65528": [], + "0/49/65529": [], + "0/49/65531": [0, 1, 4, 5, 6, 7, 65528, 65529, 65531, 65532, 65533], + "0/51/0": [ + { + "name": "eth1", + "isOperational": true, + "offPremiseServicesReachableIPv4": null, + "offPremiseServicesReachableIPv6": null, + "hardwareAddress": "ABeILIy4", + "IPv4Addresses": ["CjwBuw=="], + "IPv6Addresses": [ + "/VqgxiAxQiYCF4j//iyMuA==", + "IAEEcLs7AAYCF4j//iyMuA==", + "/oAAAAAAAAACF4j//iyMuA==" + ], + "type": 0 + }, + { + "name": "eth0", + "isOperational": false, + "offPremiseServicesReachableIPv4": null, + "offPremiseServicesReachableIPv6": null, + "hardwareAddress": "AAN/ESDO", + "IPv4Addresses": [], + "IPv6Addresses": [], + "type": 2 + }, + { + "name": "lo", + "isOperational": true, + "offPremiseServicesReachableIPv4": null, + "offPremiseServicesReachableIPv6": null, + "hardwareAddress": "AAAAAAAA", + "IPv4Addresses": ["fwAAAQ=="], + "IPv6Addresses": ["AAAAAAAAAAAAAAAAAAAAAQ=="], + "type": 0 + } + ], + "0/51/1": 4, + "0/51/2": 834681, + "0/51/3": 231, + "0/51/4": 0, + "0/51/5": [], + "0/51/6": [], + "0/51/7": [], + "0/51/8": false, + "0/51/65532": 0, + "0/51/65533": 1, + "0/51/65528": [], + "0/51/65529": [0], + "0/51/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533 + ], + "0/60/0": 0, + "0/60/1": null, + "0/60/2": null, + "0/60/65532": 0, + "0/60/65533": 1, + "0/60/65528": [], + "0/60/65529": [0, 1, 2], + "0/60/65531": [0, 1, 2, 65528, 65529, 65531, 65532, 65533], + "0/62/0": [ + { + "noc": "FTABAQEkAgE3AyQTAhgmBIAigScmBYAlTTo3BiQVASQRARgkBwEkCAEwCUEEYGMAhVV+Adasucgyi++1D7eyBIfHs9xLKJPVJqJdMAqt0S8lQs+6v/NAyAVXsN8jdGlNgZQENRnfqC2gXv3COzcKNQEoARgkAgE2AwQCBAEYMAQUTK/GvAzp9yCT0ihFRaEyW8KuO0IwBRQ5RmCO0h/Cd/uv6Pe62ZSLBzXOtBgwC0CaO1hqAR9PQJUkSx4MQyHEDQND/3j7m6EPRImPCA53dKI7e4w7xZEQEW95oMhuUobdy3WbMcggAMTX46ninwqUGA==", + "icac": "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQTAhgkBwEkCAEwCUEEqboEMvSYpJHvrznp5AQ1fHW0AVUrTajBHZ/2uba7+FTyPb+fqgf6K1zbuMqTxTOA/FwjzAL7hQTwG+HNnmLwNTcKNQEpARgkAmAwBBQ5RmCO0h/Cd/uv6Pe62ZSLBzXOtDAFFG02YRl97W++GsAiEiBzIhO0hzA6GDALQBl+ZyFbSXu3oXVJGBjtDcpwOCRC30OaVjDhUT7NbohDLaKuwxMhAgE+uHtSLKRZPGlQGSzYdnDGj/dWolGE+n4Y", + "fabricIndex": 52 + } + ], + "0/62/1": [ + { + "rootPublicKey": "BOI8+YJvCUh78+5WD4aHD7t1HQJS3WMrCEknk6n+5HXP2VRMB3SvK6+EEa8rR6UkHnCryIREeOmS0XYozzHjTQg=", + "vendorId": 65521, + "fabricId": 1, + "nodeId": 1, + "label": "", + "fabricIndex": 52 + } + ], + "0/62/2": 16, + "0/62/3": 4, + "0/62/4": [ + "FTABAQAkAgE3AycUF+1s7yUxl34kFQEYJgRAwC8rJgXA8xAtNwYnFBftbO8lMZd+JBUBGCQHASQIATAJQQRVFfH8a8Q6Ao7WLf+UWfO6Qs7yilIhKqD59s89ORO1UFw4ge7hwKMSFn8ixUw/SolOQBSsCF4L0mSEatBpsDFnNwo1ASkBGCQCYDAEFPrNGEmgHq6sOVn/hmBwy/Vue7r0MAUU+s0YSaAerqw5Wf+GYHDL9W57uvQYMAtAZthavHRZnzQlRYALrcnL/6oo5LlVEot5CBGjqdoD/j6tvJcsTbqGqtv2H5GL4DC5KRNAE5ZmyqaQDMp3hZMrMxg=", + "FTABAQAkAgE3AycUfHqQXNhPx0gkFQIYJgRtwC8rJgXt8xAtNwYnFHx6kFzYT8dIJBUCGCQHASQIATAJQQQNBDXlacZCe3oZcAfbwCvm06XcQzAC287XzRvF/RLV/fkpY0xOgTn6WYEYvThhqRF2B1WApMsQ59+WAo0X9igONwo1ASkBGCQCYDAEFEabr60b38Ymu5LyDvqUx3o0SI7xMAUURpuvrRvfxia7kvIO+pTHejRIjvEYMAtAhtqVBW7tg1C0F3w0a3mQ5uirN8UFAqgTYDh45HoqZv+NuAkF3tUI8bcIZZ/QxLu5C6GcK7KYlT3peRpNIyBCOBg=", + "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQUARgkBwEkCAEwCUEE4jz5gm8JSHvz7lYPhocPu3UdAlLdYysISSeTqf7kdc/ZVEwHdK8rr4QRrytHpSQecKvIhER46ZLRdijPMeNNCDcKNQEpARgkAmAwBBRtNmEZfe1vvhrAIhIgcyITtIcwOjAFFG02YRl97W++GsAiEiBzIhO0hzA6GDALQPowt7QmngLyiuBmOVcu/kv3QR/+HhfRPxN5W8E811lBhPX4qEpvsBdEzJS0SpiQh+Fql+ARHzUGuIKP6SqjCnMY", + "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQUARgkBwEkCAEwCUEEOXNb0qzX1XBSquJ+bK0cuBsQl9aY/aBJ5njrCywf1qBz9W+54CQc4Lz5FtNzAhV7B6C3NppGozNUiSoAsL55ATcKNQEpARgkAmAwBBSWJBXzLVqg+IBcPntxiV91YIS0yDAFFJYkFfMtWqD4gFw+e3GJX3VghLTIGDALQIx8UTwGL2Ios2ym0C36ZrBPU7x7dw9zxCMKiuiDeEtdqcrKE7W/aaQ8/Mg2jszd7mqe/qq5y3yq3V6a8tQjrD0Y" + ], + "0/62/5": 52, + "0/62/65532": 0, + "0/62/65533": 1, + "0/62/65528": [1, 3, 5, 8], + "0/62/65529": [0, 2, 4, 6, 7, 9, 10, 11], + "0/62/65531": [0, 1, 2, 3, 4, 5, 65528, 65529, 65531, 65532, 65533], + "0/63/0": [], + "0/63/1": [], + "0/63/2": 3, + "0/63/3": 3, + "0/63/65533": 1, + "0/63/65528": [2, 5], + "0/63/65529": [0, 1, 3, 4], + "0/63/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65533], + "1/6/0": true, + "1/6/16384": true, + "1/6/16385": 0, + "1/6/16386": 0, + "1/6/16387": null, + "1/6/65532": 1, + "1/6/65533": 4, + "1/6/65528": [], + "1/6/65529": [0, 1, 2, 64, 65, 66], + "1/6/65531": [ + 0, 16384, 16385, 16386, 16387, 65528, 65529, 65531, 65532, 65533 + ], + "1/29/0": [ + { + "type": 268, + "revision": 1 + } + ], + "1/29/1": [6, 29, 57, 768, 8, 80, 3, 4], + "1/29/2": [], + "1/29/3": [], + "1/29/65533": 1, + "1/29/65528": [], + "1/29/65529": [], + "1/29/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65533], + "1/768/0": 36, + "1/768/3": 26515, + "1/768/4": 25657, + "1/768/7": 284, + "1/768/1": 51, + "1/768/16384": 9305, + "1/768/8": 0, + "1/768/15": 0, + "1/768/16385": 0, "1/768/16386": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16386, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopActive", - "attribute_name": "ColorLoopActive", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "1/768/16387": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16387, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopDirection", - "attribute_name": "ColorLoopDirection", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "1/768/16388": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16388, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopTime", - "attribute_name": "ColorLoopTime", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "1/768/16389": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16389, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopStartEnhancedHue", - "attribute_name": "ColorLoopStartEnhancedHue", - "value": { - "TLVValue": null, - "Reason": null - } + "TLVValue": null, + "Reason": null }, "1/768/16390": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16390, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopStoredEnhancedHue", - "attribute_name": "ColorLoopStoredEnhancedHue", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "1/768/16394": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16394, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorCapabilities", - "attribute_name": "ColorCapabilities", - "value": 25 + "TLVValue": null, + "Reason": null }, + "1/768/16394": 25, "1/768/16": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.NumberOfPrimaries", - "attribute_name": "NumberOfPrimaries", - "value": { - "TLVValue": null, - "Reason": null + "TLVValue": null, + "Reason": null + }, + "1/768/16395": 153, + "1/768/16396": 500, + "1/768/16397": 250, + "1/768/16400": 65535, + "1/768/2": 0, + "1/768/65532": 16, + "1/768/65533": 5, + "1/768/65528": [], + "1/768/65529": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 71, 75, 76], + "1/768/65531": [ + 0, 3, 4, 7, 1, 16384, 8, 15, 16385, 16386, 16387, 16388, 16389, 16390, + 16394, 16, 16395, 16396, 16397, 16400, 2, 65528, 65529, 65531, 65532, + 65533 + ], + "1/8/0": 128, + "1/8/2": 1, + "1/8/3": 254, + "1/8/1": 0, + "1/8/17": null, + "1/8/15": 0, + "1/8/16384": 1, + "1/8/65532": 3, + "1/8/65533": 5, + "1/8/65528": [], + "1/8/65529": [0, 1, 2, 3, 4, 5, 6, 7], + "1/8/65531": [0, 2, 3, 1, 17, 15, 16384, 65528, 65529, 65531, 65532, 65533], + "1/80/0": "Lighting", + "1/80/1": 0, + "1/80/2": [ + { + "label": "Dark", + "mode": 0, + "semanticTags": [] + }, + { + "label": "Medium", + "mode": 1, + "semanticTags": [] + }, + { + "label": "Light", + "mode": 2, + "semanticTags": [] } - }, - "1/768/16395": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16395, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorTempPhysicalMinMireds", - "attribute_name": "ColorTempPhysicalMinMireds", - "value": 153 - }, - "1/768/16396": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16396, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorTempPhysicalMaxMireds", - "attribute_name": "ColorTempPhysicalMaxMireds", - "value": 500 - }, - "1/768/16397": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16397, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CoupleColorTempToLevelMinMireds", - "attribute_name": "CoupleColorTempToLevelMinMireds", - "value": 250 - }, - "1/768/16400": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16400, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.StartUpColorTemperatureMireds", - "attribute_name": "StartUpColorTemperatureMireds", - "value": 65535 - }, - "1/768/2": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.RemainingTime", - "attribute_name": "RemainingTime", - "value": 0 - }, - "1/768/65532": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 16 - }, - "1/768/65533": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 5 - }, - "1/768/65528": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/768/65529": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 71, 75, 76] - }, - "1/768/65531": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 3, 4, 7, 1, 16384, 8, 15, 16385, 16386, 16387, 16388, 16389, 16390, - 16394, 16, 16395, 16396, 16397, 16400, 2, 65528, 65529, 65531, 65532, - 65533 - ] - }, - "1/8/0": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.CurrentLevel", - "attribute_name": "CurrentLevel", - "value": 128 - }, - "1/8/2": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.MinLevel", - "attribute_name": "MinLevel", - "value": 1 - }, - "1/8/3": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.MaxLevel", - "attribute_name": "MaxLevel", - "value": 254 - }, - "1/8/1": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.RemainingTime", - "attribute_name": "RemainingTime", - "value": 0 - }, - "1/8/17": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.OnLevel", - "attribute_name": "OnLevel", - "value": null - }, - "1/8/15": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.Options", - "attribute_name": "Options", - "value": 0 - }, - "1/8/16384": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 16384, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.StartUpCurrentLevel", - "attribute_name": "StartUpCurrentLevel", - "value": 1 - }, - "1/8/65532": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 3 - }, - "1/8/65533": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 5 - }, - "1/8/65528": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/8/65529": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 3, 4, 5, 6, 7] - }, - "1/8/65531": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 2, 3, 1, 17, 15, 16384, 65528, 65529, 65531, 65532, 65533] - }, - "1/80/0": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 80, - "cluster_type": "chip.clusters.Objects.ModeSelect", - "cluster_name": "ModeSelect", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.ModeSelect.Attributes.Description", - "attribute_name": "Description", - "value": "Lighting" - }, - "1/80/1": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 80, - "cluster_type": "chip.clusters.Objects.ModeSelect", - "cluster_name": "ModeSelect", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.ModeSelect.Attributes.StandardNamespace", - "attribute_name": "StandardNamespace", - "value": 0 - }, - "1/80/2": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 80, - "cluster_type": "chip.clusters.Objects.ModeSelect", - "cluster_name": "ModeSelect", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.ModeSelect.Attributes.SupportedModes", - "attribute_name": "SupportedModes", - "value": [ - { - "label": "Dark", - "mode": 0, - "semanticTags": [] - }, - { - "label": "Medium", - "mode": 1, - "semanticTags": [] - }, - { - "label": "Light", - "mode": 2, - "semanticTags": [] - } - ] - }, - "1/80/3": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 80, - "cluster_type": "chip.clusters.Objects.ModeSelect", - "cluster_name": "ModeSelect", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.ModeSelect.Attributes.CurrentMode", - "attribute_name": "CurrentMode", - "value": 0 - }, - "1/80/5": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 80, - "cluster_type": "chip.clusters.Objects.ModeSelect", - "cluster_name": "ModeSelect", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.ModeSelect.Attributes.OnMode", - "attribute_name": "OnMode", - "value": 0 - }, - "1/80/65532": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 80, - "cluster_type": "chip.clusters.Objects.ModeSelect", - "cluster_name": "ModeSelect", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.ModeSelect.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "1/80/65533": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 80, - "cluster_type": "chip.clusters.Objects.ModeSelect", - "cluster_name": "ModeSelect", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.ModeSelect.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "1/80/65528": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 80, - "cluster_type": "chip.clusters.Objects.ModeSelect", - "cluster_name": "ModeSelect", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.ModeSelect.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/80/65529": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 80, - "cluster_type": "chip.clusters.Objects.ModeSelect", - "cluster_name": "ModeSelect", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.ModeSelect.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "1/80/65531": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 80, - "cluster_type": "chip.clusters.Objects.ModeSelect", - "cluster_name": "ModeSelect", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.ModeSelect.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 5, 65528, 65529, 65531, 65532, 65533] - }, - "1/3/0": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.IdentifyTime", - "attribute_name": "IdentifyTime", - "value": 0 - }, - "1/3/1": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.IdentifyType", - "attribute_name": "IdentifyType", - "value": 1 - }, - "1/3/65532": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "1/3/65533": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "1/3/65528": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/3/65529": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 64] - }, - "1/3/65531": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 65528, 65529, 65531, 65532, 65533] - }, - "1/4/0": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.NameSupport", - "attribute_name": "NameSupport", - "value": 0 - }, - "1/4/65532": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "1/4/65533": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "1/4/65528": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [0, 1, 2, 3] - }, - "1/4/65529": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 5, 2, 4, 3, 1] - }, - "1/4/65531": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - } + ], + "1/80/3": 0, + "1/80/5": 0, + "1/80/65532": 1, + "1/80/65533": 1, + "1/80/65528": [], + "1/80/65529": [0], + "1/80/65531": [0, 1, 2, 3, 5, 65528, 65529, 65531, 65532, 65533], + "1/3/0": 0, + "1/3/1": 1, + "1/3/65532": 0, + "1/3/65533": 4, + "1/3/65528": [], + "1/3/65529": [0, 64], + "1/3/65531": [0, 1, 65528, 65529, 65531, 65532, 65533], + "1/4/0": 0, + "1/4/65532": 0, + "1/4/65533": 4, + "1/4/65528": [0, 1, 2, 3], + "1/4/65529": [0, 5, 2, 4, 3, 1], + "1/4/65531": [0, 65528, 65529, 65531, 65532, 65533] }, - "endpoints": [0, 1], - "root_device_type_instance": null, - "aggregator_device_type_instance": null, - "device_type_instances": [null], - "node_devices": [null], - "_type": "matter_server.common.models.node.MatterNode" + "available": true } diff --git a/tests/components/matter/fixtures/nodes/contact-sensor.json b/tests/components/matter/fixtures/nodes/contact-sensor.json index 5e2ca4e937c..fa90ecff1d5 100644 --- a/tests/components/matter/fixtures/nodes/contact-sensor.json +++ b/tests/components/matter/fixtures/nodes/contact-sensor.json @@ -2,655 +2,88 @@ "node_id": 1, "date_commissioned": "2022-11-29T21:23:48.485051", "last_interview": "2022-11-29T21:23:48.485057", - "interview_version": 1, + "interview_version": 2, "attributes": { - "0/29/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.DeviceTypeList", - "attribute_name": "DeviceTypeList", - "value": [ - { - "type": 22, - "revision": 1 - } - ] - }, - "0/29/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ServerList", - "attribute_name": "ServerList", - "value": [ - 4, 29, 31, 40, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 55, 59, 60, 62, - 63, 64, 65 - ] - }, - "0/29/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClientList", - "attribute_name": "ClientList", - "value": [41] - }, - "0/29/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.PartsList", - "attribute_name": "PartsList", - "value": [1] - }, - "0/29/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/29/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/29/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/29/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/29/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/40/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", - "attribute_name": "DataModelRevision", - "value": 1 - }, - "0/40/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", - "attribute_name": "VendorName", - "value": "Nabu Casa" - }, - "0/40/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", - "attribute_name": "VendorID", - "value": 65521 - }, - "0/40/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", - "attribute_name": "ProductName", - "value": "Mock ContactSensor" - }, - "0/40/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", - "attribute_name": "ProductID", - "value": 32768 - }, - "0/40/5": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", - "attribute_name": "NodeLabel", - "value": "Mock Contact sensor" - }, - "0/40/6": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", - "attribute_name": "Location", - "value": "XX" - }, - "0/40/7": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", - "attribute_name": "HardwareVersion", - "value": 0 - }, - "0/40/8": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", - "attribute_name": "HardwareVersionString", - "value": "v1.0" - }, - "0/40/9": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", - "attribute_name": "SoftwareVersion", - "value": 1 - }, - "0/40/10": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", - "attribute_name": "SoftwareVersionString", - "value": "v1.0" - }, - "0/40/11": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", - "attribute_name": "ManufacturingDate", - "value": "20221206" - }, - "0/40/12": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", - "attribute_name": "PartNumber", - "value": "" - }, - "0/40/13": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", - "attribute_name": "ProductURL", - "value": "" - }, - "0/40/14": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", - "attribute_name": "ProductLabel", - "value": "" - }, - "0/40/15": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", - "attribute_name": "SerialNumber", - "value": "TEST_SN" - }, - "0/40/16": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", - "attribute_name": "LocalConfigDisabled", - "value": false - }, - "0/40/17": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", - "attribute_name": "Reachable", - "value": true - }, - "0/40/18": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", - "attribute_name": "UniqueID", - "value": "mock-contact-sensor" - }, - "0/40/19": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", - "attribute_name": "CapabilityMinima", - "value": { - "caseSessionsPerFabric": 3, - "subscriptionsPerFabric": 3 + "0/29/0": [ + { + "type": 22, + "revision": 1 } + ], + "0/29/1": [ + 4, 29, 31, 40, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 55, 59, 60, 62, 63, + 64, 65 + ], + "0/29/2": [41], + "0/29/3": [1], + "0/29/65532": 0, + "0/29/65533": 1, + "0/29/65528": [], + "0/29/65529": [], + "0/29/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/40/0": 1, + "0/40/1": "Nabu Casa", + "0/40/2": 65521, + "0/40/3": "Mock ContactSensor", + "0/40/4": 32768, + "0/40/5": "Mock Contact sensor", + "0/40/6": "XX", + "0/40/7": 0, + "0/40/8": "v1.0", + "0/40/9": 1, + "0/40/10": "v1.0", + "0/40/11": "20221206", + "0/40/12": "", + "0/40/13": "", + "0/40/14": "", + "0/40/15": "TEST_SN", + "0/40/16": false, + "0/40/17": true, + "0/40/18": "mock-contact-sensor", + "0/40/19": { + "caseSessionsPerFabric": 3, + "subscriptionsPerFabric": 3 }, - "0/40/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/40/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/40/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/40/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/40/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, - 65528, 65529, 65531, 65532, 65533 - ] - }, - - "1/3/0": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.IdentifyTime", - "attribute_name": "IdentifyTime", - "value": 0 - }, - "1/3/1": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.IdentifyType", - "attribute_name": "IdentifyType", - "value": 2 - }, - "1/3/65532": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "1/3/65533": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "1/3/65528": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/3/65529": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 64] - }, - "1/3/65531": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 65528, 65529, 65531, 65532, 65533] - }, - - "1/29/0": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.DeviceTypeList", - "attribute_name": "DeviceTypeList", - "value": [ - { - "type": 21, - "revision": 1 - } - ] - }, - "1/29/1": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ServerList", - "attribute_name": "ServerList", - "value": [ - 3, 4, 5, 6, 7, 8, 15, 29, 30, 37, 47, 59, 64, 65, 69, 80, 257, 258, 259, - 512, 513, 514, 516, 768, 1024, 1026, 1027, 1028, 1029, 1030, 1283, 1284, - 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 2820, - 4294048773 - ] - }, - "1/29/2": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClientList", - "attribute_name": "ClientList", - "value": [] - }, - "1/29/3": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.PartsList", - "attribute_name": "PartsList", - "value": [] - }, - "1/29/65532": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "1/29/65533": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "1/29/65528": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/29/65529": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "1/29/65531": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "1/69/0": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 69, - "cluster_type": "chip.clusters.Objects.BooleanState", - "cluster_name": "BooleanState", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.BooleanState.Attributes.StateValue", - "attribute_name": "StateValue", - "value": true - }, - "1/69/65532": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 69, - "cluster_type": "chip.clusters.Objects.BooleanState", - "cluster_name": "BooleanState", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.BooleanState.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "1/69/65533": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 69, - "cluster_type": "chip.clusters.Objects.BooleanState", - "cluster_name": "BooleanState", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.BooleanState.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "1/69/65528": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 69, - "cluster_type": "chip.clusters.Objects.BooleanState", - "cluster_name": "BooleanState", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.BooleanState.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/69/65529": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 69, - "cluster_type": "chip.clusters.Objects.BooleanState", - "cluster_name": "BooleanState", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.BooleanState.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "1/69/65531": { - "node_id": 1, - "endpoint": 1, - "cluster_id": 69, - "cluster_type": "chip.clusters.Objects.BooleanState", - "cluster_name": "BooleanState", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.BooleanState.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - } + "0/40/65532": 0, + "0/40/65533": 1, + "0/40/65528": [], + "0/40/65529": [], + "0/40/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, + 65528, 65529, 65531, 65532, 65533 + ], + "1/3/0": 0, + "1/3/1": 2, + "1/3/65532": 0, + "1/3/65533": 4, + "1/3/65528": [], + "1/3/65529": [0, 64], + "1/3/65531": [0, 1, 65528, 65529, 65531, 65532, 65533], + "1/29/0": [ + { + "type": 21, + "revision": 1 + } + ], + "1/29/1": [ + 3, 4, 5, 6, 7, 8, 15, 29, 30, 37, 47, 59, 64, 65, 69, 80, 257, 258, 259, + 512, 513, 514, 516, 768, 1024, 1026, 1027, 1028, 1029, 1030, 1283, 1284, + 1285, 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 2820, + 4294048773 + ], + "1/29/2": [], + "1/29/3": [], + "1/29/65532": 0, + "1/29/65533": 1, + "1/29/65528": [], + "1/29/65529": [], + "1/29/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "1/69/0": true, + "1/69/65532": 0, + "1/69/65533": 1, + "1/69/65528": [], + "1/69/65529": [], + "1/69/65531": [0, 65528, 65529, 65531, 65532, 65533] }, - "endpoints": [0, 1], - "root_device_type_instance": null, - "aggregator_device_type_instance": null, - "device_type_instances": [null], - "node_devices": [null], - "_type": "matter_server.common.models.node.MatterNode" + "available": true } diff --git a/tests/components/matter/fixtures/nodes/device_diagnostics.json b/tests/components/matter/fixtures/nodes/device_diagnostics.json index 377d72c7352..2950a61622c 100644 --- a/tests/components/matter/fixtures/nodes/device_diagnostics.json +++ b/tests/components/matter/fixtures/nodes/device_diagnostics.json @@ -2,4222 +2,470 @@ "node_id": 5, "date_commissioned": "2023-01-16T21:07:57.508440", "last_interview": "2023-01-16T21:07:57.508448", - "interview_version": 1, + "interview_version": 2, "attributes": { - "0/4/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.NameSupport", - "attribute_name": "NameSupport", - "value": 128 - }, - "0/4/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "0/4/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "0/4/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [0, 1, 2, 3] - }, - "0/4/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 3, 4, 5] - }, - "0/4/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - }, - "0/29/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.DeviceTypeList", - "attribute_name": "DeviceTypeList", - "value": [ - { - "type": 22, - "revision": 1 - } - ] - }, - "0/29/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ServerList", - "attribute_name": "ServerList", - "value": [ - 4, 29, 31, 40, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 55, 59, 60, 62, - 63, 64, 65 - ] - }, - "0/29/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClientList", - "attribute_name": "ClientList", - "value": [41] - }, - "0/29/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.PartsList", - "attribute_name": "PartsList", - "value": [1] - }, - "0/29/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/29/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/29/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/29/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/29/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/31/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.Acl", - "attribute_name": "Acl", - "value": [ - { - "privilege": 5, - "authMode": 2, - "subjects": [112233], - "targets": null, - "fabricIndex": 1 - } - ] - }, - "0/31/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.Extension", - "attribute_name": "Extension", - "value": [] - }, - "0/31/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.SubjectsPerAccessControlEntry", - "attribute_name": "SubjectsPerAccessControlEntry", - "value": 4 - }, - "0/31/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.TargetsPerAccessControlEntry", - "attribute_name": "TargetsPerAccessControlEntry", - "value": 3 - }, - "0/31/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AccessControlEntriesPerFabric", - "attribute_name": "AccessControlEntriesPerFabric", - "value": 3 - }, - "0/31/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/31/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/31/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/31/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/31/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533] - }, - "0/40/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", - "attribute_name": "DataModelRevision", - "value": 1 - }, - "0/40/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", - "attribute_name": "VendorName", - "value": "Nabu Casa" - }, - "0/40/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", - "attribute_name": "VendorID", - "value": 65521 - }, - "0/40/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", - "attribute_name": "ProductName", - "value": "M5STAMP Lighting App" - }, - "0/40/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", - "attribute_name": "ProductID", - "value": 32768 - }, - "0/40/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", - "attribute_name": "NodeLabel", - "value": "" - }, - "0/40/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", - "attribute_name": "Location", - "value": "XX" - }, - "0/40/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", - "attribute_name": "HardwareVersion", - "value": 0 - }, - "0/40/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", - "attribute_name": "HardwareVersionString", - "value": "v1.0" - }, - "0/40/9": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", - "attribute_name": "SoftwareVersion", - "value": 1 - }, - "0/40/10": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", - "attribute_name": "SoftwareVersionString", - "value": "v1.0" - }, - "0/40/11": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", - "attribute_name": "ManufacturingDate", - "value": "20200101" - }, - "0/40/12": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", - "attribute_name": "PartNumber", - "value": "" - }, - "0/40/13": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", - "attribute_name": "ProductURL", - "value": "" - }, - "0/40/14": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", - "attribute_name": "ProductLabel", - "value": "" - }, - "0/40/15": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", - "attribute_name": "SerialNumber", - "value": "TEST_SN" - }, - "0/40/16": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", - "attribute_name": "LocalConfigDisabled", - "value": false - }, - "0/40/17": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", - "attribute_name": "Reachable", - "value": true - }, - "0/40/18": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", - "attribute_name": "UniqueID", - "value": "869D5F986B588B29" - }, + "0/4/0": 128, + "0/4/65532": 1, + "0/4/65533": 4, + "0/4/65528": [0, 1, 2, 3], + "0/4/65529": [0, 1, 2, 3, 4, 5], + "0/4/65531": [0, 65528, 65529, 65531, 65532, 65533], + "0/29/0": [ + { + "type": 22, + "revision": 1 + } + ], + "0/29/1": [ + 4, 29, 31, 40, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 55, 59, 60, 62, 63, + 64, 65 + ], + "0/29/2": [41], + "0/29/3": [1], + "0/29/65532": 0, + "0/29/65533": 1, + "0/29/65528": [], + "0/29/65529": [], + "0/29/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/31/0": [ + { + "privilege": 5, + "authMode": 2, + "subjects": [112233], + "targets": null, + "fabricIndex": 1 + } + ], + "0/31/1": [], + "0/31/2": 4, + "0/31/3": 3, + "0/31/4": 3, + "0/31/65532": 0, + "0/31/65533": 1, + "0/31/65528": [], + "0/31/65529": [], + "0/31/65531": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533], + "0/40/0": 1, + "0/40/1": "Nabu Casa", + "0/40/2": 65521, + "0/40/3": "M5STAMP Lighting App", + "0/40/4": 32768, + "0/40/5": "", + "0/40/6": "XX", + "0/40/7": 0, + "0/40/8": "v1.0", + "0/40/9": 1, + "0/40/10": "v1.0", + "0/40/11": "20200101", + "0/40/12": "", + "0/40/13": "", + "0/40/14": "", + "0/40/15": "TEST_SN", + "0/40/16": false, + "0/40/17": true, + "0/40/18": "869D5F986B588B29", "0/40/19": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", - "attribute_name": "CapabilityMinima", - "value": { - "caseSessionsPerFabric": 3, - "subscriptionsPerFabric": 3 - } - }, - "0/40/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/40/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/40/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/40/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/40/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, - 65528, 65529, 65531, 65532, 65533 - ] - }, - "0/42/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.DefaultOtaProviders", - "attribute_name": "DefaultOtaProviders", - "value": [] - }, - "0/42/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.UpdatePossible", - "attribute_name": "UpdatePossible", - "value": true - }, - "0/42/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.UpdateState", - "attribute_name": "UpdateState", - "value": 0 - }, - "0/42/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.UpdateStateProgress", - "attribute_name": "UpdateStateProgress", - "value": 0 - }, - "0/42/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/42/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/42/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/42/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/42/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/43/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.ActiveLocale", - "attribute_name": "ActiveLocale", - "value": "en-US" - }, - "0/43/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.SupportedLocales", - "attribute_name": "SupportedLocales", - "value": [ - "en-US", - "de-DE", - "fr-FR", - "en-GB", - "es-ES", - "zh-CN", - "it-IT", - "ja-JP" - ] - }, - "0/43/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/43/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/43/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/43/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/43/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 65528, 65529, 65531, 65532, 65533] - }, - "0/44/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.HourFormat", - "attribute_name": "HourFormat", - "value": 0 - }, - "0/44/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.ActiveCalendarType", - "attribute_name": "ActiveCalendarType", - "value": 0 - }, - "0/44/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.SupportedCalendarTypes", - "attribute_name": "SupportedCalendarTypes", - "value": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 7] - }, - "0/44/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/44/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/44/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/44/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/44/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] - }, - "0/48/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.Breadcrumb", - "attribute_name": "Breadcrumb", - "value": 0 + "caseSessionsPerFabric": 3, + "subscriptionsPerFabric": 3 }, + "0/40/65532": 0, + "0/40/65533": 1, + "0/40/65528": [], + "0/40/65529": [], + "0/40/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, + 65528, 65529, 65531, 65532, 65533 + ], + "0/42/0": [], + "0/42/1": true, + "0/42/2": 0, + "0/42/3": 0, + "0/42/65532": 0, + "0/42/65533": 1, + "0/42/65528": [], + "0/42/65529": [0], + "0/42/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/43/0": "en-US", + "0/43/1": [ + "en-US", + "de-DE", + "fr-FR", + "en-GB", + "es-ES", + "zh-CN", + "it-IT", + "ja-JP" + ], + "0/43/65532": 0, + "0/43/65533": 1, + "0/43/65528": [], + "0/43/65529": [], + "0/43/65531": [0, 1, 65528, 65529, 65531, 65532, 65533], + "0/44/0": 0, + "0/44/1": 0, + "0/44/2": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 7], + "0/44/65532": 0, + "0/44/65533": 1, + "0/44/65528": [], + "0/44/65529": [], + "0/44/65531": [0, 1, 2, 65528, 65529, 65531, 65532, 65533], + "0/48/0": 0, "0/48/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.BasicCommissioningInfo", - "attribute_name": "BasicCommissioningInfo", - "value": { - "failSafeExpiryLengthSeconds": 60, - "maxCumulativeFailsafeSeconds": 900 + "failSafeExpiryLengthSeconds": 60, + "maxCumulativeFailsafeSeconds": 900 + }, + "0/48/2": 0, + "0/48/3": 0, + "0/48/4": true, + "0/48/65532": 0, + "0/48/65533": 1, + "0/48/65528": [1, 3, 5], + "0/48/65529": [0, 2, 4], + "0/48/65531": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533], + "0/49/0": 1, + "0/49/1": [], + "0/49/2": 10, + "0/49/3": 30, + "0/49/4": true, + "0/49/5": 0, + "0/49/6": "bVdMQU4yLjQ=", + "0/49/7": null, + "0/49/65532": 1, + "0/49/65533": 1, + "0/49/65528": [1, 5, 7], + "0/49/65529": [0, 2, 4, 6, 8], + "0/49/65531": [0, 1, 2, 3, 4, 5, 6, 7, 65528, 65529, 65531, 65532, 65533], + "0/50/65532": 0, + "0/50/65533": 1, + "0/50/65528": [1], + "0/50/65529": [0], + "0/50/65531": [65528, 65529, 65531, 65532, 65533], + "0/51/0": [ + { + "name": "WIFI_STA_DEF", + "isOperational": true, + "offPremiseServicesReachableIPv4": null, + "offPremiseServicesReachableIPv6": null, + "hardwareAddress": "YFX5V0js", + "IPv4Addresses": ["wKgBIw=="], + "IPv6Addresses": ["/oAAAAAAAABiVfn//ldI7A=="], + "type": 1 } - }, - "0/48/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.RegulatoryConfig", - "attribute_name": "RegulatoryConfig", - "value": 0 - }, - "0/48/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.LocationCapability", - "attribute_name": "LocationCapability", - "value": 0 - }, - "0/48/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.SupportsConcurrentConnection", - "attribute_name": "SupportsConcurrentConnection", - "value": true - }, - "0/48/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/48/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/48/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1, 3, 5] - }, - "0/48/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 2, 4] - }, - "0/48/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533] - }, - "0/49/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.MaxNetworks", - "attribute_name": "MaxNetworks", - "value": 1 - }, - "0/49/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.Networks", - "attribute_name": "Networks", - "value": [] - }, - "0/49/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.ScanMaxTimeSeconds", - "attribute_name": "ScanMaxTimeSeconds", - "value": 10 - }, - "0/49/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.ConnectMaxTimeSeconds", - "attribute_name": "ConnectMaxTimeSeconds", - "value": 30 - }, - "0/49/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.InterfaceEnabled", - "attribute_name": "InterfaceEnabled", - "value": true - }, - "0/49/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastNetworkingStatus", - "attribute_name": "LastNetworkingStatus", - "value": 0 - }, - "0/49/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastNetworkID", - "attribute_name": "LastNetworkID", - "value": "bVdMQU4yLjQ=" - }, - "0/49/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastConnectErrorValue", - "attribute_name": "LastConnectErrorValue", - "value": null - }, - "0/49/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "0/49/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/49/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1, 5, 7] - }, - "0/49/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 2, 4, 6, 8] - }, - "0/49/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 5, 6, 7, 65528, 65529, 65531, 65532, 65533] - }, - "0/50/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/50/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/50/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1] - }, - "0/50/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/50/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [65528, 65529, 65531, 65532, 65533] - }, - "0/51/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.NetworkInterfaces", - "attribute_name": "NetworkInterfaces", - "value": [ - { - "name": "WIFI_STA_DEF", - "isOperational": true, - "offPremiseServicesReachableIPv4": null, - "offPremiseServicesReachableIPv6": null, - "hardwareAddress": "YFX5V0js", - "IPv4Addresses": ["wKgBIw=="], - "IPv6Addresses": ["/oAAAAAAAABiVfn//ldI7A=="], - "type": 1 - } - ] - }, - "0/51/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.RebootCount", - "attribute_name": "RebootCount", - "value": 3 - }, - "0/51/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.UpTime", - "attribute_name": "UpTime", - "value": 213 - }, - "0/51/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.TotalOperationalHours", - "attribute_name": "TotalOperationalHours", - "value": 0 - }, - "0/51/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.BootReasons", - "attribute_name": "BootReasons", - "value": 1 - }, - "0/51/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveHardwareFaults", - "attribute_name": "ActiveHardwareFaults", - "value": [] - }, - "0/51/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveRadioFaults", - "attribute_name": "ActiveRadioFaults", - "value": [] - }, - "0/51/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveNetworkFaults", - "attribute_name": "ActiveNetworkFaults", - "value": [] - }, - "0/51/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.TestEventTriggersEnabled", - "attribute_name": "TestEventTriggersEnabled", - "value": false - }, - "0/51/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/51/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/51/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/51/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/51/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533] - }, - "0/52/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.ThreadMetrics", - "attribute_name": "ThreadMetrics", - "value": [] - }, - "0/52/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.CurrentHeapFree", - "attribute_name": "CurrentHeapFree", - "value": 166660 - }, - "0/52/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.CurrentHeapUsed", - "attribute_name": "CurrentHeapUsed", - "value": 86332 - }, - "0/52/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.CurrentHeapHighWatermark", - "attribute_name": "CurrentHeapHighWatermark", - "value": 99208 - }, - "0/52/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/52/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/52/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/52/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/52/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/53/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.Channel", - "attribute_name": "Channel", - "value": { - "TLVValue": null, - "Reason": null + ], + "0/51/1": 3, + "0/51/2": 213, + "0/51/3": 0, + "0/51/4": 1, + "0/51/5": [], + "0/51/6": [], + "0/51/7": [], + "0/51/8": false, + "0/51/65532": 0, + "0/51/65533": 1, + "0/51/65528": [], + "0/51/65529": [0], + "0/51/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533 + ], + "0/52/0": [], + "0/52/1": 166660, + "0/52/2": 86332, + "0/52/3": 99208, + "0/52/65532": 0, + "0/52/65533": 1, + "0/52/65528": [], + "0/52/65529": [], + "0/52/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/53/0": null, + "0/53/1": null, + "0/53/2": null, + "0/53/3": null, + "0/53/4": null, + "0/53/5": null, + "0/53/6": null, + "0/53/7": null, + "0/53/8": null, + "0/53/9": null, + "0/53/10": null, + "0/53/11": null, + "0/53/12": null, + "0/53/13": null, + "0/53/14": null, + "0/53/15": null, + "0/53/16": null, + "0/53/17": null, + "0/53/18": null, + "0/53/19": null, + "0/53/20": null, + "0/53/21": null, + "0/53/22": null, + "0/53/23": null, + "0/53/24": null, + "0/53/25": null, + "0/53/26": null, + "0/53/27": null, + "0/53/28": null, + "0/53/29": null, + "0/53/30": null, + "0/53/31": null, + "0/53/32": null, + "0/53/33": null, + "0/53/34": null, + "0/53/35": null, + "0/53/36": null, + "0/53/37": null, + "0/53/38": null, + "0/53/39": null, + "0/53/40": null, + "0/53/41": null, + "0/53/42": null, + "0/53/43": null, + "0/53/44": null, + "0/53/45": null, + "0/53/46": null, + "0/53/47": null, + "0/53/48": null, + "0/53/49": null, + "0/53/50": null, + "0/53/51": null, + "0/53/52": null, + "0/53/53": null, + "0/53/54": null, + "0/53/55": null, + "0/53/56": null, + "0/53/57": null, + "0/53/58": null, + "0/53/59": null, + "0/53/60": null, + "0/53/61": null, + "0/53/62": null, + "0/53/65532": 15, + "0/53/65533": 1, + "0/53/65528": [], + "0/53/65529": [0], + "0/53/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, + 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, + 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 65528, 65529, 65531, 65532, 65533 + ], + "0/54/0": "BKFR27h1", + "0/54/1": 4, + "0/54/2": 3, + "0/54/3": 3, + "0/54/4": -56, + "0/54/5": null, + "0/54/6": null, + "0/54/7": null, + "0/54/8": null, + "0/54/9": null, + "0/54/10": null, + "0/54/11": null, + "0/54/12": null, + "0/54/65532": 3, + "0/54/65533": 1, + "0/54/65528": [], + "0/54/65529": [0], + "0/54/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 65528, 65529, 65531, 65532, + 65533 + ], + "0/55/0": null, + "0/55/1": null, + "0/55/2": 0, + "0/55/3": 0, + "0/55/4": 0, + "0/55/5": 0, + "0/55/6": 0, + "0/55/7": null, + "0/55/8": 0, + "0/55/65532": 3, + "0/55/65533": 1, + "0/55/65528": [], + "0/55/65529": [0], + "0/55/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533 + ], + "0/59/65532": 0, + "0/59/65533": 1, + "0/59/65528": [], + "0/59/65529": [], + "0/59/65531": [65528, 65529, 65531, 65532, 65533], + "0/60/0": 0, + "0/60/1": null, + "0/60/2": null, + "0/60/65532": 0, + "0/60/65533": 1, + "0/60/65528": [], + "0/60/65529": [0, 1, 2], + "0/60/65531": [0, 1, 2, 65528, 65529, 65531, 65532, 65533], + "0/62/0": [ + { + "noc": "FTABAQEkAgE3AyQTAhgmBIAigScmBYAlTTo3BiQVASQRBRgkBwEkCAEwCUEEELwf3lni0ez0mRGa/z9gFtuTfn3Gpnsq/rBvQmpgjxqgC0RNcZmHfAm176H0j6ENQrnc1RhkKA5qiJtEgzQF4DcKNQEoARgkAgE2AwQCBAEYMAQURdGBtNYpheXbKDo2Od5OLDCytacwBRQc+rrVsNzRFL1V9i4OFnGKrwIajRgwC0AG9mdYqL5WJ0jKIBcEzeWQbo8xg6sFv0ANmq0KSpMbfqVvw8Y39XEOQ6B8v+JCXSGMpdPC0nbVQKuv/pKUvJoTGA==", + "icac": "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQTAhgkBwEkCAEwCUEEWYzjmQq/3zCbWfMKR0asASVnOBOkNAzdwdW1X6sC0zA5m3DhGRMEff09ZqHDZi/o6CW+I+rEGNEyW+00/M84azcKNQEpARgkAmAwBBQc+rrVsNzRFL1V9i4OFnGKrwIajTAFFI6CuLTopCFiBYeGuUcP8Ak5Jo3gGDALQDYMHSAwxZPP4TFqIGot2vm5+Wir58quxbojkWwyT9l8eat6f9sJmjTZ0VLggTwAWvY+IVm82YuMzTPxmkNWxVIY", + "fabricIndex": 1 } - }, - "0/53/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RoutingRole", - "attribute_name": "RoutingRole", - "value": { - "TLVValue": null, - "Reason": null + ], + "0/62/1": [ + { + "rootPublicKey": "BALNCzn2XOp1NrwszT+LOLYT+tM76+Pob8AIOFl9+0UWFsLp4ZHUainZZMJQIAHxv39srVUYW0+nacFcjHTzNHw=", + "vendorId": 65521, + "fabricId": 1, + "nodeId": 5, + "label": "", + "fabricIndex": 1 } - }, - "0/53/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.NetworkName", - "attribute_name": "NetworkName", - "value": { - "TLVValue": null, - "Reason": null + ], + "0/62/2": 5, + "0/62/3": 1, + "0/62/4": [ + "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQUARgkBwEkCAEwCUEEAs0LOfZc6nU2vCzNP4s4thP60zvr4+hvwAg4WX37RRYWwunhkdRqKdlkwlAgAfG/f2ytVRhbT6dpwVyMdPM0fDcKNQEpARgkAmAwBBSOgri06KQhYgWHhrlHD/AJOSaN4DAFFI6CuLTopCFiBYeGuUcP8Ak5Jo3gGDALQGxeigcXo8H7pmRHCOma3uT688xoreaDwV8JfFUMUnHUvqg+2GNzFtvfD6MkDaYVPghsXjITZLv5qsHhrUaIO7QY" + ], + "0/62/5": 1, + "0/62/65532": 0, + "0/62/65533": 1, + "0/62/65528": [1, 3, 5, 8], + "0/62/65529": [0, 2, 4, 6, 7, 9, 10, 11], + "0/62/65531": [0, 1, 2, 3, 4, 5, 65528, 65529, 65531, 65532, 65533], + "0/63/0": [], + "0/63/1": [], + "0/63/2": 3, + "0/63/3": 3, + "0/63/65532": 0, + "0/63/65533": 1, + "0/63/65528": [2, 5], + "0/63/65529": [0, 1, 3, 4], + "0/63/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/64/0": [ + { + "label": "room", + "value": "bedroom 2" + }, + { + "label": "orientation", + "value": "North" + }, + { + "label": "floor", + "value": "2" + }, + { + "label": "direction", + "value": "up" } - }, - "0/53/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PanId", - "attribute_name": "PanId", - "value": { - "TLVValue": null, - "Reason": null + ], + "0/64/65532": 0, + "0/64/65533": 1, + "0/64/65528": [], + "0/64/65529": [], + "0/64/65531": [0, 65528, 65529, 65531, 65532, 65533], + "0/65/0": [], + "0/65/65532": 0, + "0/65/65533": 1, + "0/65/65528": [], + "0/65/65529": [], + "0/65/65531": [0, 65528, 65529, 65531, 65532, 65533], + "1/3/0": 0, + "1/3/1": 0, + "1/3/65532": 0, + "1/3/65533": 4, + "1/3/65528": [], + "1/3/65529": [0, 64], + "1/3/65531": [0, 1, 65528, 65529, 65531, 65532, 65533], + "1/4/0": 128, + "1/4/65532": 1, + "1/4/65533": 4, + "1/4/65528": [0, 1, 2, 3], + "1/4/65529": [0, 1, 2, 3, 4, 5], + "1/4/65531": [0, 65528, 65529, 65531, 65532, 65533], + "1/6/0": false, + "1/6/16384": true, + "1/6/16385": 0, + "1/6/16386": 0, + "1/6/16387": null, + "1/6/65532": 1, + "1/6/65533": 4, + "1/6/65528": [], + "1/6/65529": [0, 1, 2, 64, 65, 66], + "1/6/65531": [ + 0, 16384, 16385, 16386, 16387, 65528, 65529, 65531, 65532, 65533 + ], + "1/8/0": 254, + "1/8/1": 0, + "1/8/2": 1, + "1/8/3": 254, + "1/8/4": 0, + "1/8/5": 0, + "1/8/6": 0, + "1/8/15": 0, + "1/8/16": 0, + "1/8/17": null, + "1/8/18": 0, + "1/8/19": 0, + "1/8/20": 50, + "1/8/16384": null, + "1/8/65532": 3, + "1/8/65533": 5, + "1/8/65528": [], + "1/8/65529": [0, 1, 2, 3, 4, 5, 6, 7], + "1/8/65531": [ + 0, 1, 2, 3, 4, 5, 6, 15, 16, 17, 18, 19, 20, 16384, 65528, 65529, 65531, + 65532, 65533 + ], + "1/29/0": [ + { + "type": 257, + "revision": 1 } - }, - "0/53/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ExtendedPanId", - "attribute_name": "ExtendedPanId", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.MeshLocalPrefix", - "attribute_name": "MeshLocalPrefix", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.OverrunCount", - "attribute_name": "OverrunCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.NeighborTableList", - "attribute_name": "NeighborTableList", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RouteTableList", - "attribute_name": "RouteTableList", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/9": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PartitionId", - "attribute_name": "PartitionId", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/10": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.Weighting", - "attribute_name": "Weighting", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/11": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.DataVersion", - "attribute_name": "DataVersion", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/12": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.StableDataVersion", - "attribute_name": "StableDataVersion", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/13": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.LeaderRouterId", - "attribute_name": "LeaderRouterId", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/14": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.DetachedRoleCount", - "attribute_name": "DetachedRoleCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/15": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ChildRoleCount", - "attribute_name": "ChildRoleCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/16": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RouterRoleCount", - "attribute_name": "RouterRoleCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/17": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.LeaderRoleCount", - "attribute_name": "LeaderRoleCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/18": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.AttachAttemptCount", - "attribute_name": "AttachAttemptCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/19": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PartitionIdChangeCount", - "attribute_name": "PartitionIdChangeCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/20": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 20, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.BetterPartitionAttachAttemptCount", - "attribute_name": "BetterPartitionAttachAttemptCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/21": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 21, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ParentChangeCount", - "attribute_name": "ParentChangeCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/22": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 22, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxTotalCount", - "attribute_name": "TxTotalCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/23": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 23, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxUnicastCount", - "attribute_name": "TxUnicastCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/24": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 24, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxBroadcastCount", - "attribute_name": "TxBroadcastCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/25": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 25, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxAckRequestedCount", - "attribute_name": "TxAckRequestedCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/26": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 26, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxAckedCount", - "attribute_name": "TxAckedCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/27": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 27, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxNoAckRequestedCount", - "attribute_name": "TxNoAckRequestedCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/28": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 28, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxDataCount", - "attribute_name": "TxDataCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/29": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 29, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxDataPollCount", - "attribute_name": "TxDataPollCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/30": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 30, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxBeaconCount", - "attribute_name": "TxBeaconCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/31": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 31, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxBeaconRequestCount", - "attribute_name": "TxBeaconRequestCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/32": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 32, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxOtherCount", - "attribute_name": "TxOtherCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/33": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 33, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxRetryCount", - "attribute_name": "TxRetryCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/34": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 34, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxDirectMaxRetryExpiryCount", - "attribute_name": "TxDirectMaxRetryExpiryCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/35": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 35, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxIndirectMaxRetryExpiryCount", - "attribute_name": "TxIndirectMaxRetryExpiryCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/36": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 36, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxErrCcaCount", - "attribute_name": "TxErrCcaCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/37": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 37, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxErrAbortCount", - "attribute_name": "TxErrAbortCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/38": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 38, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxErrBusyChannelCount", - "attribute_name": "TxErrBusyChannelCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/39": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 39, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxTotalCount", - "attribute_name": "RxTotalCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/40": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 40, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxUnicastCount", - "attribute_name": "RxUnicastCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/41": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 41, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxBroadcastCount", - "attribute_name": "RxBroadcastCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/42": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 42, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDataCount", - "attribute_name": "RxDataCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/43": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 43, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDataPollCount", - "attribute_name": "RxDataPollCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/44": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 44, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxBeaconCount", - "attribute_name": "RxBeaconCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/45": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 45, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxBeaconRequestCount", - "attribute_name": "RxBeaconRequestCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/46": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 46, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxOtherCount", - "attribute_name": "RxOtherCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/47": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 47, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxAddressFilteredCount", - "attribute_name": "RxAddressFilteredCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/48": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 48, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDestAddrFilteredCount", - "attribute_name": "RxDestAddrFilteredCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/49": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 49, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDuplicatedCount", - "attribute_name": "RxDuplicatedCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/50": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 50, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrNoFrameCount", - "attribute_name": "RxErrNoFrameCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/51": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 51, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrUnknownNeighborCount", - "attribute_name": "RxErrUnknownNeighborCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/52": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 52, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrInvalidSrcAddrCount", - "attribute_name": "RxErrInvalidSrcAddrCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/53": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 53, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrSecCount", - "attribute_name": "RxErrSecCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/54": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 54, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrFcsCount", - "attribute_name": "RxErrFcsCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/55": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 55, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrOtherCount", - "attribute_name": "RxErrOtherCount", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/56": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 56, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ActiveTimestamp", - "attribute_name": "ActiveTimestamp", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/57": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 57, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PendingTimestamp", - "attribute_name": "PendingTimestamp", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/58": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 58, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.Delay", - "attribute_name": "Delay", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/59": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 59, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.SecurityPolicy", - "attribute_name": "SecurityPolicy", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/60": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 60, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ChannelPage0Mask", - "attribute_name": "ChannelPage0Mask", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/61": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 61, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.OperationalDatasetComponents", - "attribute_name": "OperationalDatasetComponents", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/62": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 62, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ActiveNetworkFaultsList", - "attribute_name": "ActiveNetworkFaultsList", - "value": { - "TLVValue": null, - "Reason": null - } - }, - "0/53/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 15 - }, - "0/53/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/53/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/53/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/53/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, - 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, - 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, 60, 61, 62, 65528, 65529, 65531, 65532, 65533 - ] - }, - "0/54/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.Bssid", - "attribute_name": "Bssid", - "value": "BKFR27h1" - }, - "0/54/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.SecurityType", - "attribute_name": "SecurityType", - "value": 4 - }, - "0/54/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.WiFiVersion", - "attribute_name": "WiFiVersion", - "value": 3 - }, - "0/54/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.ChannelNumber", - "attribute_name": "ChannelNumber", - "value": 3 - }, - "0/54/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.Rssi", - "attribute_name": "Rssi", - "value": -56 - }, - "0/54/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.BeaconLostCount", - "attribute_name": "BeaconLostCount", - "value": null - }, - "0/54/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.BeaconRxCount", - "attribute_name": "BeaconRxCount", - "value": null - }, - "0/54/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketMulticastRxCount", - "attribute_name": "PacketMulticastRxCount", - "value": null - }, - "0/54/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketMulticastTxCount", - "attribute_name": "PacketMulticastTxCount", - "value": null - }, - "0/54/9": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketUnicastRxCount", - "attribute_name": "PacketUnicastRxCount", - "value": null - }, - "0/54/10": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketUnicastTxCount", - "attribute_name": "PacketUnicastTxCount", - "value": null - }, - "0/54/11": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.CurrentMaxRate", - "attribute_name": "CurrentMaxRate", - "value": null - }, - "0/54/12": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.OverrunCount", - "attribute_name": "OverrunCount", - "value": null - }, - "0/54/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 3 - }, - "0/54/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/54/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/54/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/54/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 65528, 65529, 65531, 65532, - 65533 - ] - }, - "0/55/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.PHYRate", - "attribute_name": "PHYRate", - "value": null - }, - "0/55/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.FullDuplex", - "attribute_name": "FullDuplex", - "value": null - }, - "0/55/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.PacketRxCount", - "attribute_name": "PacketRxCount", - "value": 0 - }, - "0/55/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.PacketTxCount", - "attribute_name": "PacketTxCount", - "value": 0 - }, - "0/55/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.TxErrCount", - "attribute_name": "TxErrCount", - "value": 0 - }, - "0/55/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.CollisionCount", - "attribute_name": "CollisionCount", - "value": 0 - }, - "0/55/6": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.OverrunCount", - "attribute_name": "OverrunCount", - "value": 0 - }, - "0/55/7": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.CarrierDetect", - "attribute_name": "CarrierDetect", - "value": null - }, - "0/55/8": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.TimeSinceReset", - "attribute_name": "TimeSinceReset", - "value": 0 - }, - "0/55/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 3 - }, - "0/55/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/55/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/55/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/55/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533] - }, - "0/59/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/59/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/59/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/59/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/59/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [65528, 65529, 65531, 65532, 65533] - }, - "0/60/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.WindowStatus", - "attribute_name": "WindowStatus", - "value": 0 - }, - "0/60/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AdminFabricIndex", - "attribute_name": "AdminFabricIndex", - "value": null - }, - "0/60/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AdminVendorId", - "attribute_name": "AdminVendorId", - "value": null - }, - "0/60/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/60/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/60/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/60/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2] - }, - "0/60/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] - }, - "0/62/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.NOCs", - "attribute_name": "NOCs", - "value": [ - { - "noc": "FTABAQEkAgE3AyQTAhgmBIAigScmBYAlTTo3BiQVASQRBRgkBwEkCAEwCUEEELwf3lni0ez0mRGa/z9gFtuTfn3Gpnsq/rBvQmpgjxqgC0RNcZmHfAm176H0j6ENQrnc1RhkKA5qiJtEgzQF4DcKNQEoARgkAgE2AwQCBAEYMAQURdGBtNYpheXbKDo2Od5OLDCytacwBRQc+rrVsNzRFL1V9i4OFnGKrwIajRgwC0AG9mdYqL5WJ0jKIBcEzeWQbo8xg6sFv0ANmq0KSpMbfqVvw8Y39XEOQ6B8v+JCXSGMpdPC0nbVQKuv/pKUvJoTGA==", - "icac": "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQTAhgkBwEkCAEwCUEEWYzjmQq/3zCbWfMKR0asASVnOBOkNAzdwdW1X6sC0zA5m3DhGRMEff09ZqHDZi/o6CW+I+rEGNEyW+00/M84azcKNQEpARgkAmAwBBQc+rrVsNzRFL1V9i4OFnGKrwIajTAFFI6CuLTopCFiBYeGuUcP8Ak5Jo3gGDALQDYMHSAwxZPP4TFqIGot2vm5+Wir58quxbojkWwyT9l8eat6f9sJmjTZ0VLggTwAWvY+IVm82YuMzTPxmkNWxVIY", - "fabricIndex": 1 - } - ] - }, - "0/62/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.Fabrics", - "attribute_name": "Fabrics", - "value": [ - { - "rootPublicKey": "BALNCzn2XOp1NrwszT+LOLYT+tM76+Pob8AIOFl9+0UWFsLp4ZHUainZZMJQIAHxv39srVUYW0+nacFcjHTzNHw=", - "vendorId": 65521, - "fabricId": 1, - "nodeId": 5, - "label": "", - "fabricIndex": 1 - } - ] - }, - "0/62/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.SupportedFabrics", - "attribute_name": "SupportedFabrics", - "value": 5 - }, - "0/62/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.CommissionedFabrics", - "attribute_name": "CommissionedFabrics", - "value": 1 - }, - "0/62/4": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.TrustedRootCertificates", - "attribute_name": "TrustedRootCertificates", - "value": [ - "FTABAQEkAgE3AyQUARgmBIAigScmBYAlTTo3BiQUARgkBwEkCAEwCUEEAs0LOfZc6nU2vCzNP4s4thP60zvr4+hvwAg4WX37RRYWwunhkdRqKdlkwlAgAfG/f2ytVRhbT6dpwVyMdPM0fDcKNQEpARgkAmAwBBSOgri06KQhYgWHhrlHD/AJOSaN4DAFFI6CuLTopCFiBYeGuUcP8Ak5Jo3gGDALQGxeigcXo8H7pmRHCOma3uT688xoreaDwV8JfFUMUnHUvqg+2GNzFtvfD6MkDaYVPghsXjITZLv5qsHhrUaIO7QY" - ] - }, - "0/62/5": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.CurrentFabricIndex", - "attribute_name": "CurrentFabricIndex", - "value": 1 - }, - "0/62/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/62/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/62/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1, 3, 5, 8] - }, - "0/62/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 2, 4, 6, 7, 9, 10, 11] - }, - "0/62/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 5, 65528, 65529, 65531, 65532, 65533] - }, - "0/63/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.GroupKeyMap", - "attribute_name": "GroupKeyMap", - "value": [] - }, - "0/63/1": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.GroupTable", - "attribute_name": "GroupTable", - "value": [] - }, - "0/63/2": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.MaxGroupsPerFabric", - "attribute_name": "MaxGroupsPerFabric", - "value": 3 - }, - "0/63/3": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.MaxGroupKeysPerFabric", - "attribute_name": "MaxGroupKeysPerFabric", - "value": 3 - }, - "0/63/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/63/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/63/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [2, 5] - }, - "0/63/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 3, 4] - }, - "0/63/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 63, - "cluster_type": "chip.clusters.Objects.GroupKeyManagement", - "cluster_name": "GroupKeyManagement", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.GroupKeyManagement.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/64/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.LabelList", - "attribute_name": "LabelList", - "value": [ - { - "label": "room", - "value": "bedroom 2" - }, - { - "label": "orientation", - "value": "North" - }, - { - "label": "floor", - "value": "2" - }, - { - "label": "direction", - "value": "up" - } - ] - }, - "0/64/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/64/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/64/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/64/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/64/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 64, - "cluster_type": "chip.clusters.Objects.FixedLabel", - "cluster_name": "FixedLabel", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.FixedLabel.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - }, - "0/65/0": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.LabelList", - "attribute_name": "LabelList", - "value": [] - }, - "0/65/65532": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/65/65533": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/65/65528": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/65/65529": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/65/65531": { - "node_id": 5, - "endpoint": 0, - "cluster_id": 65, - "cluster_type": "chip.clusters.Objects.UserLabel", - "cluster_name": "UserLabel", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.UserLabel.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - }, - "1/3/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.IdentifyTime", - "attribute_name": "IdentifyTime", - "value": 0 - }, - "1/3/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.IdentifyType", - "attribute_name": "IdentifyType", - "value": 0 - }, - "1/3/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "1/3/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "1/3/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/3/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 64] - }, - "1/3/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 3, - "cluster_type": "chip.clusters.Objects.Identify", - "cluster_name": "Identify", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Identify.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 65528, 65529, 65531, 65532, 65533] - }, - "1/4/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.NameSupport", - "attribute_name": "NameSupport", - "value": 128 - }, - "1/4/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "1/4/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "1/4/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [0, 1, 2, 3] - }, - "1/4/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 3, 4, 5] - }, - "1/4/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - }, - "1/6/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.OnOff", - "attribute_name": "OnOff", - "value": false - }, - "1/6/16384": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16384, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.GlobalSceneControl", - "attribute_name": "GlobalSceneControl", - "value": true - }, - "1/6/16385": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16385, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.OnTime", - "attribute_name": "OnTime", - "value": 0 - }, - "1/6/16386": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16386, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.OffWaitTime", - "attribute_name": "OffWaitTime", - "value": 0 - }, - "1/6/16387": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 16387, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.StartUpOnOff", - "attribute_name": "StartUpOnOff", - "value": null - }, - "1/6/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "1/6/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "1/6/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/6/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 64, 65, 66] - }, - "1/6/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 6, - "cluster_type": "chip.clusters.Objects.OnOff", - "cluster_name": "OnOff", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OnOff.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 16384, 16385, 16386, 16387, 65528, 65529, 65531, 65532, 65533 - ] - }, - "1/8/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.CurrentLevel", - "attribute_name": "CurrentLevel", - "value": 254 - }, - "1/8/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.RemainingTime", - "attribute_name": "RemainingTime", - "value": 0 - }, - "1/8/2": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.MinLevel", - "attribute_name": "MinLevel", - "value": 1 - }, - "1/8/3": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.MaxLevel", - "attribute_name": "MaxLevel", - "value": 254 - }, - "1/8/4": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.CurrentFrequency", - "attribute_name": "CurrentFrequency", - "value": 0 - }, - "1/8/5": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.MinFrequency", - "attribute_name": "MinFrequency", - "value": 0 - }, - "1/8/6": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.MaxFrequency", - "attribute_name": "MaxFrequency", - "value": 0 - }, - "1/8/15": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.Options", - "attribute_name": "Options", - "value": 0 - }, - "1/8/16": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.OnOffTransitionTime", - "attribute_name": "OnOffTransitionTime", - "value": 0 - }, - "1/8/17": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.OnLevel", - "attribute_name": "OnLevel", - "value": null - }, - "1/8/18": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.OnTransitionTime", - "attribute_name": "OnTransitionTime", - "value": 0 - }, - "1/8/19": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.OffTransitionTime", - "attribute_name": "OffTransitionTime", - "value": 0 - }, - "1/8/20": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 20, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.DefaultMoveRate", - "attribute_name": "DefaultMoveRate", - "value": 50 - }, - "1/8/16384": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 16384, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.StartUpCurrentLevel", - "attribute_name": "StartUpCurrentLevel", - "value": null - }, - "1/8/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 3 - }, - "1/8/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 5 - }, - "1/8/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/8/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 3, 4, 5, 6, 7] - }, - "1/8/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 8, - "cluster_type": "chip.clusters.Objects.LevelControl", - "cluster_name": "LevelControl", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.LevelControl.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 15, 16, 17, 18, 19, 20, 16384, 65528, 65529, 65531, - 65532, 65533 - ] - }, - "1/29/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.DeviceTypeList", - "attribute_name": "DeviceTypeList", - "value": [ - { - "type": 257, - "revision": 1 - } - ] - }, - "1/29/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ServerList", - "attribute_name": "ServerList", - "value": [3, 4, 6, 8, 29, 768, 1030] - }, - "1/29/2": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClientList", - "attribute_name": "ClientList", - "value": [] - }, - "1/29/3": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.PartsList", - "attribute_name": "PartsList", - "value": [] - }, - "1/29/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "1/29/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "1/29/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/29/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "1/29/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "1/768/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentHue", - "attribute_name": "CurrentHue", - "value": 0 - }, - "1/768/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentSaturation", - "attribute_name": "CurrentSaturation", - "value": 0 - }, - "1/768/2": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.RemainingTime", - "attribute_name": "RemainingTime", - "value": 0 - }, - "1/768/3": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentX", - "attribute_name": "CurrentX", - "value": 24939 - }, - "1/768/4": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CurrentY", - "attribute_name": "CurrentY", - "value": 24701 - }, - "1/768/7": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorTemperatureMireds", - "attribute_name": "ColorTemperatureMireds", - "value": 0 - }, - "1/768/8": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorMode", - "attribute_name": "ColorMode", - "value": 2 - }, - "1/768/15": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.Options", - "attribute_name": "Options", - "value": 0 - }, - "1/768/16": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.NumberOfPrimaries", - "attribute_name": "NumberOfPrimaries", - "value": 0 - }, - "1/768/16384": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16384, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.EnhancedCurrentHue", - "attribute_name": "EnhancedCurrentHue", - "value": 0 - }, - "1/768/16385": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16385, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.EnhancedColorMode", - "attribute_name": "EnhancedColorMode", - "value": 2 - }, - "1/768/16386": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16386, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopActive", - "attribute_name": "ColorLoopActive", - "value": 0 - }, - "1/768/16387": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16387, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopDirection", - "attribute_name": "ColorLoopDirection", - "value": 0 - }, - "1/768/16388": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16388, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopTime", - "attribute_name": "ColorLoopTime", - "value": 25 - }, - "1/768/16389": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16389, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopStartEnhancedHue", - "attribute_name": "ColorLoopStartEnhancedHue", - "value": 8960 - }, - "1/768/16390": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16390, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorLoopStoredEnhancedHue", - "attribute_name": "ColorLoopStoredEnhancedHue", - "value": 0 - }, - "1/768/16394": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16394, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorCapabilities", - "attribute_name": "ColorCapabilities", - "value": 31 - }, - "1/768/16395": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16395, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorTempPhysicalMinMireds", - "attribute_name": "ColorTempPhysicalMinMireds", - "value": 0 - }, - "1/768/16396": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16396, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ColorTempPhysicalMaxMireds", - "attribute_name": "ColorTempPhysicalMaxMireds", - "value": 65279 - }, - "1/768/16397": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16397, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.CoupleColorTempToLevelMinMireds", - "attribute_name": "CoupleColorTempToLevelMinMireds", - "value": 0 - }, - "1/768/16400": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 16400, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.StartUpColorTemperatureMireds", - "attribute_name": "StartUpColorTemperatureMireds", - "value": 0 - }, - "1/768/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 31 - }, - "1/768/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 5 - }, - "1/768/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/768/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 64, 65, 66, 67, 68, 71, 75, 76 - ] - }, - "1/768/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 768, - "cluster_type": "chip.clusters.Objects.ColorControl", - "cluster_name": "ColorControl", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.ColorControl.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 7, 8, 15, 16, 16384, 16385, 16386, 16387, 16388, 16389, - 16390, 16394, 16395, 16396, 16397, 16400, 65528, 65529, 65531, 65532, - 65533 - ] - }, - "1/1030/0": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.Occupancy", - "attribute_name": "Occupancy", - "value": 0 - }, - "1/1030/1": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.OccupancySensorType", - "attribute_name": "OccupancySensorType", - "value": 0 - }, - "1/1030/2": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.OccupancySensorTypeBitmap", - "attribute_name": "OccupancySensorTypeBitmap", - "value": 1 - }, - "1/1030/65532": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "1/1030/65533": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 3 - }, - "1/1030/65528": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "1/1030/65529": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "1/1030/65531": { - "node_id": 5, - "endpoint": 1, - "cluster_id": 1030, - "cluster_type": "chip.clusters.Objects.OccupancySensing", - "cluster_name": "OccupancySensing", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OccupancySensing.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] - } + ], + "1/29/1": [3, 4, 6, 8, 29, 768, 1030], + "1/29/2": [], + "1/29/3": [], + "1/29/65532": 0, + "1/29/65533": 1, + "1/29/65528": [], + "1/29/65529": [], + "1/29/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "1/768/0": 0, + "1/768/1": 0, + "1/768/2": 0, + "1/768/3": 24939, + "1/768/4": 24701, + "1/768/7": 0, + "1/768/8": 2, + "1/768/15": 0, + "1/768/16": 0, + "1/768/16384": 0, + "1/768/16385": 2, + "1/768/16386": 0, + "1/768/16387": 0, + "1/768/16388": 25, + "1/768/16389": 8960, + "1/768/16390": 0, + "1/768/16394": 31, + "1/768/16395": 0, + "1/768/16396": 65279, + "1/768/16397": 0, + "1/768/16400": 0, + "1/768/65532": 31, + "1/768/65533": 5, + "1/768/65528": [], + "1/768/65529": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 64, 65, 66, 67, 68, 71, 75, 76 + ], + "1/768/65531": [ + 0, 1, 2, 3, 4, 7, 8, 15, 16, 16384, 16385, 16386, 16387, 16388, 16389, + 16390, 16394, 16395, 16396, 16397, 16400, 65528, 65529, 65531, 65532, + 65533 + ], + "1/1030/0": 0, + "1/1030/1": 0, + "1/1030/2": 1, + "1/1030/65532": 0, + "1/1030/65533": 3, + "1/1030/65528": [], + "1/1030/65529": [], + "1/1030/65531": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] }, - "endpoints": [0, 1], - "root_device_type_instance": { - "__type": "", - "repr": "" - }, - "aggregator_device_type_instance": null, - "device_type_instances": [ - { - "__type": "", - "repr": "" - } - ], - "node_devices": [ - { - "__type": "", - "repr": "" - } - ] + "available": true } diff --git a/tests/components/matter/fixtures/nodes/dimmable-light.json b/tests/components/matter/fixtures/nodes/dimmable-light.json index 7449c600b3c..f295e3bf154 100644 --- a/tests/components/matter/fixtures/nodes/dimmable-light.json +++ b/tests/components/matter/fixtures/nodes/dimmable-light.json @@ -2,4219 +2,410 @@ "node_id": 1, "date_commissioned": "2022-11-29T21:23:48.485051", "last_interview": "2022-11-29T21:23:48.485057", - "interview_version": 1, + "interview_version": 2, "attributes": { - "0/4/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.NameSupport", - "attribute_name": "NameSupport", - "value": 128 - }, - "0/4/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "0/4/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 4 - }, - "0/4/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [0, 1, 2, 3] - }, - "0/4/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2, 3, 4, 5] - }, - "0/4/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 4, - "cluster_type": "chip.clusters.Objects.Groups", - "cluster_name": "Groups", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Groups.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 65528, 65529, 65531, 65532, 65533] - }, - "0/29/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.DeviceTypeList", - "attribute_name": "DeviceTypeList", - "value": [ - { - "type": 22, - "revision": 1 - } - ] - }, - "0/29/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ServerList", - "attribute_name": "ServerList", - "value": [ - 4, 29, 31, 40, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 55, 59, 60, 62, - 63, 64, 65 - ] - }, - "0/29/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClientList", - "attribute_name": "ClientList", - "value": [41] - }, - "0/29/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.PartsList", - "attribute_name": "PartsList", - "value": [1] - }, - "0/29/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/29/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/29/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/29/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/29/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 29, - "cluster_type": "chip.clusters.Objects.Descriptor", - "cluster_name": "Descriptor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Descriptor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/31/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.Acl", - "attribute_name": "Acl", - "value": [ - { - "privilege": 5, - "authMode": 2, - "subjects": [112233], - "targets": null, - "fabricIndex": 1 - } - ] - }, - "0/31/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.Extension", - "attribute_name": "Extension", - "value": [] - }, - "0/31/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.SubjectsPerAccessControlEntry", - "attribute_name": "SubjectsPerAccessControlEntry", - "value": 4 - }, - "0/31/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.TargetsPerAccessControlEntry", - "attribute_name": "TargetsPerAccessControlEntry", - "value": 3 - }, - "0/31/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AccessControlEntriesPerFabric", - "attribute_name": "AccessControlEntriesPerFabric", - "value": 3 - }, - "0/31/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/31/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/31/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/31/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/31/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 31, - "cluster_type": "chip.clusters.Objects.AccessControl", - "cluster_name": "AccessControl", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.AccessControl.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533] - }, - "0/40/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.DataModelRevision", - "attribute_name": "DataModelRevision", - "value": 1 - }, - "0/40/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorName", - "attribute_name": "VendorName", - "value": "Nabu Casa" - }, - "0/40/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.VendorID", - "attribute_name": "VendorID", - "value": 65521 - }, - "0/40/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductName", - "attribute_name": "ProductName", - "value": "Mock Dimmable Light" - }, - "0/40/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductID", - "attribute_name": "ProductID", - "value": 32768 - }, - "0/40/5": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.NodeLabel", - "attribute_name": "NodeLabel", - "value": "Mock Dimmable Light" - }, - "0/40/6": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Location", - "attribute_name": "Location", - "value": "XX" - }, - "0/40/7": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersion", - "attribute_name": "HardwareVersion", - "value": 0 - }, - "0/40/8": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.HardwareVersionString", - "attribute_name": "HardwareVersionString", - "value": "v1.0" - }, - "0/40/9": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersion", - "attribute_name": "SoftwareVersion", - "value": 1 - }, - "0/40/10": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SoftwareVersionString", - "attribute_name": "SoftwareVersionString", - "value": "v1.0" - }, - "0/40/11": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ManufacturingDate", - "attribute_name": "ManufacturingDate", - "value": "20200101" - }, - "0/40/12": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.PartNumber", - "attribute_name": "PartNumber", - "value": "" - }, - "0/40/13": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductURL", - "attribute_name": "ProductURL", - "value": "" - }, - "0/40/14": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ProductLabel", - "attribute_name": "ProductLabel", - "value": "" - }, - "0/40/15": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.SerialNumber", - "attribute_name": "SerialNumber", - "value": "TEST_SN" - }, - "0/40/16": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.LocalConfigDisabled", - "attribute_name": "LocalConfigDisabled", - "value": false - }, - "0/40/17": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.Reachable", - "attribute_name": "Reachable", - "value": true - }, - "0/40/18": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.UniqueID", - "attribute_name": "UniqueID", - "value": "mock-dimmable-light" - }, + "0/4/0": 128, + "0/4/65532": 1, + "0/4/65533": 4, + "0/4/65528": [0, 1, 2, 3], + "0/4/65529": [0, 1, 2, 3, 4, 5], + "0/4/65531": [0, 65528, 65529, 65531, 65532, 65533], + "0/29/0": [ + { + "type": 22, + "revision": 1 + } + ], + "0/29/1": [ + 4, 29, 31, 40, 42, 43, 44, 48, 49, 50, 51, 52, 53, 54, 55, 59, 60, 62, 63, + 64, 65 + ], + "0/29/2": [41], + "0/29/3": [1], + "0/29/65532": 0, + "0/29/65533": 1, + "0/29/65528": [], + "0/29/65529": [], + "0/29/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/31/0": [ + { + "privilege": 5, + "authMode": 2, + "subjects": [112233], + "targets": null, + "fabricIndex": 1 + } + ], + "0/31/1": [], + "0/31/2": 4, + "0/31/3": 3, + "0/31/4": 3, + "0/31/65532": 0, + "0/31/65533": 1, + "0/31/65528": [], + "0/31/65529": [], + "0/31/65531": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533], + "0/40/0": 1, + "0/40/1": "Nabu Casa", + "0/40/2": 65521, + "0/40/3": "Mock Dimmable Light", + "0/40/4": 32768, + "0/40/5": "Mock Dimmable Light", + "0/40/6": "XX", + "0/40/7": 0, + "0/40/8": "v1.0", + "0/40/9": 1, + "0/40/10": "v1.0", + "0/40/11": "20200101", + "0/40/12": "", + "0/40/13": "", + "0/40/14": "", + "0/40/15": "TEST_SN", + "0/40/16": false, + "0/40/17": true, + "0/40/18": "mock-dimmable-light", "0/40/19": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.CapabilityMinima", - "attribute_name": "CapabilityMinima", - "value": { - "caseSessionsPerFabric": 3, - "subscriptionsPerFabric": 3 - } - }, - "0/40/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/40/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/40/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/40/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/40/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 40, - "cluster_type": "chip.clusters.Objects.BasicInformation", - "cluster_name": "Basic", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.BasicInformation.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, - 65528, 65529, 65531, 65532, 65533 - ] - }, - "0/42/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.DefaultOtaProviders", - "attribute_name": "DefaultOtaProviders", - "value": [] - }, - "0/42/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.UpdatePossible", - "attribute_name": "UpdatePossible", - "value": true - }, - "0/42/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.UpdateState", - "attribute_name": "UpdateState", - "value": 0 - }, - "0/42/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.UpdateStateProgress", - "attribute_name": "UpdateStateProgress", - "value": 0 - }, - "0/42/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/42/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/42/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/42/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/42/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 42, - "cluster_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor", - "cluster_name": "OtaSoftwareUpdateRequestor", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.OtaSoftwareUpdateRequestor.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/43/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.ActiveLocale", - "attribute_name": "ActiveLocale", - "value": "en-US" - }, - "0/43/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.SupportedLocales", - "attribute_name": "SupportedLocales", - "value": [ - "en-US", - "de-DE", - "fr-FR", - "en-GB", - "es-ES", - "zh-CN", - "it-IT", - "ja-JP" - ] - }, - "0/43/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/43/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/43/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/43/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/43/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 43, - "cluster_type": "chip.clusters.Objects.LocalizationConfiguration", - "cluster_name": "LocalizationConfiguration", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.LocalizationConfiguration.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 65528, 65529, 65531, 65532, 65533] - }, - "0/44/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.HourFormat", - "attribute_name": "HourFormat", - "value": 0 - }, - "0/44/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.ActiveCalendarType", - "attribute_name": "ActiveCalendarType", - "value": 0 - }, - "0/44/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.SupportedCalendarTypes", - "attribute_name": "SupportedCalendarTypes", - "value": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 7] - }, - "0/44/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/44/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/44/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/44/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/44/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 44, - "cluster_type": "chip.clusters.Objects.TimeFormatLocalization", - "cluster_name": "TimeFormatLocalization", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.TimeFormatLocalization.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] - }, - "0/48/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.Breadcrumb", - "attribute_name": "Breadcrumb", - "value": 0 + "caseSessionsPerFabric": 3, + "subscriptionsPerFabric": 3 }, + "0/40/65532": 0, + "0/40/65533": 1, + "0/40/65528": [], + "0/40/65529": [], + "0/40/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, + 65528, 65529, 65531, 65532, 65533 + ], + "0/42/0": [], + "0/42/1": true, + "0/42/2": 0, + "0/42/3": 0, + "0/42/65532": 0, + "0/42/65533": 1, + "0/42/65528": [], + "0/42/65529": [0], + "0/42/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/43/0": "en-US", + "0/43/1": [ + "en-US", + "de-DE", + "fr-FR", + "en-GB", + "es-ES", + "zh-CN", + "it-IT", + "ja-JP" + ], + "0/43/65532": 0, + "0/43/65533": 1, + "0/43/65528": [], + "0/43/65529": [], + "0/43/65531": [0, 1, 65528, 65529, 65531, 65532, 65533], + "0/44/0": 0, + "0/44/1": 0, + "0/44/2": [0, 1, 2, 3, 4, 5, 6, 8, 9, 10, 11, 7], + "0/44/65532": 0, + "0/44/65533": 1, + "0/44/65528": [], + "0/44/65529": [], + "0/44/65531": [0, 1, 2, 65528, 65529, 65531, 65532, 65533], + "0/48/0": 0, "0/48/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.BasicCommissioningInfo", - "attribute_name": "BasicCommissioningInfo", - "value": { - "failSafeExpiryLengthSeconds": 60, - "maxCumulativeFailsafeSeconds": 900 + "failSafeExpiryLengthSeconds": 60, + "maxCumulativeFailsafeSeconds": 900 + }, + "0/48/2": 0, + "0/48/3": 0, + "0/48/4": true, + "0/48/65532": 0, + "0/48/65533": 1, + "0/48/65528": [1, 3, 5], + "0/48/65529": [0, 2, 4], + "0/48/65531": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533], + "0/49/0": 1, + "0/49/1": [ + { + "networkID": "", + "connected": true } - }, - "0/48/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.RegulatoryConfig", - "attribute_name": "RegulatoryConfig", - "value": 0 - }, - "0/48/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.LocationCapability", - "attribute_name": "LocationCapability", - "value": 0 - }, - "0/48/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.SupportsConcurrentConnection", - "attribute_name": "SupportsConcurrentConnection", - "value": true - }, - "0/48/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/48/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/48/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1, 3, 5] - }, - "0/48/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 2, 4] - }, - "0/48/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 48, - "cluster_type": "chip.clusters.Objects.GeneralCommissioning", - "cluster_name": "GeneralCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.GeneralCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 65528, 65529, 65531, 65532, 65533] - }, - "0/49/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.MaxNetworks", - "attribute_name": "MaxNetworks", - "value": 1 - }, - "0/49/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.Networks", - "attribute_name": "Networks", - "value": [ - { - "networkID": "b'wifi-sm'", - "connected": true - } - ] - }, - "0/49/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.ScanMaxTimeSeconds", - "attribute_name": "ScanMaxTimeSeconds", - "value": 10 - }, - "0/49/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.ConnectMaxTimeSeconds", - "attribute_name": "ConnectMaxTimeSeconds", - "value": 30 - }, - "0/49/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.InterfaceEnabled", - "attribute_name": "InterfaceEnabled", - "value": true - }, - "0/49/5": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastNetworkingStatus", - "attribute_name": "LastNetworkingStatus", - "value": 0 - }, - "0/49/6": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastNetworkID", - "attribute_name": "LastNetworkID", - "value": "b'wifi-sm'" - }, - "0/49/7": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.LastConnectErrorValue", - "attribute_name": "LastConnectErrorValue", - "value": null - }, - "0/49/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 1 - }, - "0/49/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/49/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1, 5, 7] - }, - "0/49/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 2, 4, 6, 8] - }, - "0/49/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 49, - "cluster_type": "chip.clusters.Objects.NetworkCommissioning", - "cluster_name": "NetworkCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.NetworkCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 5, 6, 7, 65528, 65529, 65531, 65532, 65533] - }, - "0/50/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/50/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/50/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [1] - }, - "0/50/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/50/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 50, - "cluster_type": "chip.clusters.Objects.DiagnosticLogs", - "cluster_name": "DiagnosticLogs", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.DiagnosticLogs.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [65528, 65529, 65531, 65532, 65533] - }, - "0/51/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.NetworkInterfaces", - "attribute_name": "NetworkInterfaces", - "value": [ - { - "name": "WIFI_STA_DEF", - "isOperational": true, - "offPremiseServicesReachableIPv4": null, - "offPremiseServicesReachableIPv6": null, - "hardwareAddress": "b\"\\x84\\xf7\\x03'\\xb5,\"", - "IPv4Addresses": ["b'\\xc0\\xa8\\x01\\x84'"], - "IPv6Addresses": [ - "b\"\\xfe\\x80\\x00\\x00\\x00\\x00\\x00\\x00\\x86\\xf7\\x03\\xff\\xfe'\\xb5,\"", - "b\"*\\x00\\xbb\\xa0\\x12\\x12\\x8f\\x00\\x86\\xf7\\x03\\xff\\xfe'\\xb5,\"", - "b\"\\xfd\\xf5\\nn\\xf0cO\\xed\\x86\\xf7\\x03\\xff\\xfe'\\xb5,\"" - ], - "type": 1 - } - ] - }, - "0/51/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.RebootCount", - "attribute_name": "RebootCount", - "value": 6 - }, - "0/51/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.UpTime", - "attribute_name": "UpTime", - "value": 31279 - }, - "0/51/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.TotalOperationalHours", - "attribute_name": "TotalOperationalHours", - "value": 8 - }, - "0/51/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.BootReasons", - "attribute_name": "BootReasons", - "value": 1 - }, - "0/51/5": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveHardwareFaults", - "attribute_name": "ActiveHardwareFaults", - "value": [] - }, - "0/51/6": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveRadioFaults", - "attribute_name": "ActiveRadioFaults", - "value": [] - }, - "0/51/7": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ActiveNetworkFaults", - "attribute_name": "ActiveNetworkFaults", - "value": [] - }, - "0/51/8": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.TestEventTriggersEnabled", - "attribute_name": "TestEventTriggersEnabled", - "value": false - }, - "0/51/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/51/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/51/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/51/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/51/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 51, - "cluster_type": "chip.clusters.Objects.GeneralDiagnostics", - "cluster_name": "GeneralDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.GeneralDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533] - }, - "0/52/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.ThreadMetrics", - "attribute_name": "ThreadMetrics", - "value": [] - }, - "0/52/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.CurrentHeapFree", - "attribute_name": "CurrentHeapFree", - "value": 166480 - }, - "0/52/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.CurrentHeapUsed", - "attribute_name": "CurrentHeapUsed", - "value": 86512 - }, - "0/52/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.CurrentHeapHighWatermark", - "attribute_name": "CurrentHeapHighWatermark", - "value": 157052 - }, - "0/52/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/52/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/52/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/52/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/52/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 52, - "cluster_type": "chip.clusters.Objects.SoftwareDiagnostics", - "cluster_name": "SoftwareDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.SoftwareDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533] - }, - "0/53/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.Channel", - "attribute_name": "Channel", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" + ], + "0/49/2": 10, + "0/49/3": 30, + "0/49/4": true, + "0/49/5": 0, + "0/49/6": "", + "0/49/7": null, + "0/49/65532": 1, + "0/49/65533": 1, + "0/49/65528": [1, 5, 7], + "0/49/65529": [0, 2, 4, 6, 8], + "0/49/65531": [0, 1, 2, 3, 4, 5, 6, 7, 65528, 65529, 65531, 65532, 65533], + "0/50/65532": 0, + "0/50/65533": 1, + "0/50/65528": [1], + "0/50/65529": [0], + "0/50/65531": [65528, 65529, 65531, 65532, 65533], + "0/51/0": [ + { + "name": "WIFI_STA_DEF", + "isOperational": true, + "offPremiseServicesReachableIPv4": null, + "offPremiseServicesReachableIPv6": null, + "hardwareAddress": "", + "IPv4Addresses": [], + "IPv6Addresses": [], + "type": 1 } - }, - "0/53/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RoutingRole", - "attribute_name": "RoutingRole", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" + ], + "0/51/1": 6, + "0/51/2": 31279, + "0/51/3": 8, + "0/51/4": 1, + "0/51/5": [], + "0/51/6": [], + "0/51/7": [], + "0/51/8": false, + "0/51/65532": 0, + "0/51/65533": 1, + "0/51/65528": [], + "0/51/65529": [0], + "0/51/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533 + ], + "0/52/0": [], + "0/52/1": 166480, + "0/52/2": 86512, + "0/52/3": 157052, + "0/52/65532": 0, + "0/52/65533": 1, + "0/52/65528": [], + "0/52/65529": [], + "0/52/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/53/65532": 15, + "0/53/65533": 1, + "0/53/65528": [], + "0/53/65529": [0], + "0/53/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, + 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, + 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, + 57, 58, 59, 60, 61, 62, 65528, 65529, 65531, 65532, 65533 + ], + "0/54/0": "", + "0/54/1": 4, + "0/54/2": 3, + "0/54/3": 6, + "0/54/4": -61, + "0/54/5": null, + "0/54/6": null, + "0/54/7": null, + "0/54/8": null, + "0/54/9": null, + "0/54/10": null, + "0/54/11": null, + "0/54/12": null, + "0/54/65532": 3, + "0/54/65533": 1, + "0/54/65528": [], + "0/54/65529": [0], + "0/54/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 65528, 65529, 65531, 65532, + 65533 + ], + "0/55/0": null, + "0/55/1": null, + "0/55/2": 0, + "0/55/3": 0, + "0/55/4": 0, + "0/55/5": 0, + "0/55/6": 0, + "0/55/7": null, + "0/55/8": 0, + "0/55/65532": 3, + "0/55/65533": 1, + "0/55/65528": [], + "0/55/65529": [0], + "0/55/65531": [ + 0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533 + ], + "0/59/65532": 0, + "0/59/65533": 1, + "0/59/65528": [], + "0/59/65529": [], + "0/59/65531": [65528, 65529, 65531, 65532, 65533], + "0/60/0": 0, + "0/60/1": null, + "0/60/2": null, + "0/60/65532": 0, + "0/60/65533": 1, + "0/60/65528": [], + "0/60/65529": [0, 1, 2], + "0/60/65531": [0, 1, 2, 65528, 65529, 65531, 65532, 65533], + "0/62/0": [ + { + "noc": "", + "icac": "", + "fabricIndex": 1 } - }, - "0/53/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.NetworkName", - "attribute_name": "NetworkName", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" + ], + "0/62/1": [ + { + "rootPublicKey": "", + "vendorId": 65521, + "fabricId": 1, + "nodeId": 1, + "label": "", + "fabricIndex": 1 } - }, - "0/53/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PanId", - "attribute_name": "PanId", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" + ], + "0/62/2": 5, + "0/62/3": 1, + "0/62/4": [""], + "0/62/5": 1, + "0/62/65532": 0, + "0/62/65533": 1, + "0/62/65528": [1, 3, 5, 8], + "0/62/65529": [0, 2, 4, 6, 7, 9, 10, 11], + "0/62/65531": [0, 1, 2, 3, 4, 5, 65528, 65529, 65531, 65532, 65533], + "0/63/0": [], + "0/63/1": [], + "0/63/2": 3, + "0/63/3": 3, + "0/63/65532": 0, + "0/63/65533": 1, + "0/63/65528": [2, 5], + "0/63/65529": [0, 1, 3, 4], + "0/63/65531": [0, 1, 2, 3, 65528, 65529, 65531, 65532, 65533], + "0/64/0": [ + { + "label": "room", + "value": "bedroom 2" + }, + { + "label": "orientation", + "value": "North" + }, + { + "label": "floor", + "value": "2" + }, + { + "label": "direction", + "value": "up" } - }, - "0/53/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ExtendedPanId", - "attribute_name": "ExtendedPanId", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" + ], + "0/64/65532": 0, + "0/64/65533": 1, + "0/64/65528": [], + "0/64/65529": [], + "0/64/65531": [0, 65528, 65529, 65531, 65532, 65533], + "0/65/0": [], + "0/65/65532": 0, + "0/65/65533": 1, + "0/65/65528": [], + "0/65/65529": [], + "0/65/65531": [0, 65528, 65529, 65531, 65532, 65533], + "1/3/0": 0, + "1/3/1": 0, + "1/3/65532": 0, + "1/3/65533": 4, + "1/3/65528": [], + "1/3/65529": [0, 64], + "1/3/65531": [0, 1, 65528, 65529, 65531, 65532, 65533], + "1/4/0": 128, + "1/4/65532": 1, + "1/4/65533": 4, + "1/4/65528": [0, 1, 2, 3], + "1/4/65529": [0, 1, 2, 3, 4, 5], + "1/4/65531": [0, 65528, 65529, 65531, 65532, 65533], + "1/6/0": true, + "1/6/16384": true, + "1/6/16385": 0, + "1/6/16386": 0, + "1/6/16387": null, + "1/6/65532": 1, + "1/6/65533": 4, + "1/6/65528": [], + "1/6/65529": [0, 1, 2, 64, 65, 66], + "1/6/65531": [ + 0, 16384, 16385, 16386, 16387, 65528, 65529, 65531, 65532, 65533 + ], + "1/8/0": 52, + "1/8/1": 0, + "1/8/2": 1, + "1/8/3": 254, + "1/8/4": 0, + "1/8/5": 0, + "1/8/6": 0, + "1/8/15": 0, + "1/8/16": 0, + "1/8/17": null, + "1/8/18": 0, + "1/8/19": 0, + "1/8/20": 50, + "1/8/16384": null, + "1/8/65532": 3, + "1/8/65533": 5, + "1/8/65528": [], + "1/8/65529": [0, 1, 2, 3, 4, 5, 6, 7], + "1/8/65531": [ + 0, 1, 2, 3, 4, 5, 6, 15, 16, 17, 18, 19, 20, 16384, 65528, 65529, 65531, + 65532, 65533 + ], + "1/29/0": [ + { + "type": 257, + "revision": 1 } - }, - "0/53/5": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.MeshLocalPrefix", - "attribute_name": "MeshLocalPrefix", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/6": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.OverrunCount", - "attribute_name": "OverrunCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/7": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.NeighborTableList", - "attribute_name": "NeighborTableList", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/8": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RouteTableList", - "attribute_name": "RouteTableList", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/9": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PartitionId", - "attribute_name": "PartitionId", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/10": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.Weighting", - "attribute_name": "Weighting", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/11": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.DataVersion", - "attribute_name": "DataVersion", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/12": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.StableDataVersion", - "attribute_name": "StableDataVersion", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/13": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 13, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.LeaderRouterId", - "attribute_name": "LeaderRouterId", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/14": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 14, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.DetachedRoleCount", - "attribute_name": "DetachedRoleCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/15": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 15, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ChildRoleCount", - "attribute_name": "ChildRoleCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/16": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 16, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RouterRoleCount", - "attribute_name": "RouterRoleCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/17": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 17, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.LeaderRoleCount", - "attribute_name": "LeaderRoleCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/18": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 18, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.AttachAttemptCount", - "attribute_name": "AttachAttemptCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/19": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 19, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PartitionIdChangeCount", - "attribute_name": "PartitionIdChangeCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/20": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 20, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.BetterPartitionAttachAttemptCount", - "attribute_name": "BetterPartitionAttachAttemptCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/21": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 21, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ParentChangeCount", - "attribute_name": "ParentChangeCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/22": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 22, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxTotalCount", - "attribute_name": "TxTotalCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/23": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 23, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxUnicastCount", - "attribute_name": "TxUnicastCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/24": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 24, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxBroadcastCount", - "attribute_name": "TxBroadcastCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/25": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 25, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxAckRequestedCount", - "attribute_name": "TxAckRequestedCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/26": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 26, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxAckedCount", - "attribute_name": "TxAckedCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/27": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 27, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxNoAckRequestedCount", - "attribute_name": "TxNoAckRequestedCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/28": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 28, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxDataCount", - "attribute_name": "TxDataCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/29": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 29, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxDataPollCount", - "attribute_name": "TxDataPollCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/30": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 30, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxBeaconCount", - "attribute_name": "TxBeaconCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/31": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 31, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxBeaconRequestCount", - "attribute_name": "TxBeaconRequestCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/32": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 32, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxOtherCount", - "attribute_name": "TxOtherCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/33": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 33, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxRetryCount", - "attribute_name": "TxRetryCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/34": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 34, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxDirectMaxRetryExpiryCount", - "attribute_name": "TxDirectMaxRetryExpiryCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/35": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 35, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxIndirectMaxRetryExpiryCount", - "attribute_name": "TxIndirectMaxRetryExpiryCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/36": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 36, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxErrCcaCount", - "attribute_name": "TxErrCcaCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/37": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 37, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxErrAbortCount", - "attribute_name": "TxErrAbortCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/38": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 38, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.TxErrBusyChannelCount", - "attribute_name": "TxErrBusyChannelCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/39": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 39, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxTotalCount", - "attribute_name": "RxTotalCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/40": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 40, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxUnicastCount", - "attribute_name": "RxUnicastCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/41": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 41, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxBroadcastCount", - "attribute_name": "RxBroadcastCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/42": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 42, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDataCount", - "attribute_name": "RxDataCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/43": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 43, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDataPollCount", - "attribute_name": "RxDataPollCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/44": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 44, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxBeaconCount", - "attribute_name": "RxBeaconCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/45": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 45, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxBeaconRequestCount", - "attribute_name": "RxBeaconRequestCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/46": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 46, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxOtherCount", - "attribute_name": "RxOtherCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/47": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 47, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxAddressFilteredCount", - "attribute_name": "RxAddressFilteredCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/48": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 48, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDestAddrFilteredCount", - "attribute_name": "RxDestAddrFilteredCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/49": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 49, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxDuplicatedCount", - "attribute_name": "RxDuplicatedCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/50": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 50, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrNoFrameCount", - "attribute_name": "RxErrNoFrameCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/51": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 51, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrUnknownNeighborCount", - "attribute_name": "RxErrUnknownNeighborCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/52": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 52, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrInvalidSrcAddrCount", - "attribute_name": "RxErrInvalidSrcAddrCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/53": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 53, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrSecCount", - "attribute_name": "RxErrSecCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/54": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 54, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrFcsCount", - "attribute_name": "RxErrFcsCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/55": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 55, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.RxErrOtherCount", - "attribute_name": "RxErrOtherCount", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/56": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 56, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ActiveTimestamp", - "attribute_name": "ActiveTimestamp", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/57": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 57, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.PendingTimestamp", - "attribute_name": "PendingTimestamp", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/58": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 58, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.Delay", - "attribute_name": "Delay", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/59": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 59, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.SecurityPolicy", - "attribute_name": "SecurityPolicy", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/60": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 60, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ChannelPage0Mask", - "attribute_name": "ChannelPage0Mask", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/61": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 61, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.OperationalDatasetComponents", - "attribute_name": "OperationalDatasetComponents", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/62": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 62, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ActiveNetworkFaultsList", - "attribute_name": "ActiveNetworkFaultsList", - "value": { - "TLVValue": null, - "Reason": "InteractionModelError: Failure (0x1)" - } - }, - "0/53/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 15 - }, - "0/53/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/53/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/53/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/53/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 53, - "cluster_type": "chip.clusters.Objects.ThreadNetworkDiagnostics", - "cluster_name": "ThreadNetworkDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.ThreadNetworkDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, - 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, - 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, - 56, 57, 58, 59, 60, 61, 62, 65528, 65529, 65531, 65532, 65533 - ] - }, - "0/54/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.Bssid", - "attribute_name": "Bssid", - "value": "b'r\\xa7A\\x91\\xf1!'" - }, - "0/54/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.SecurityType", - "attribute_name": "SecurityType", - "value": 4 - }, - "0/54/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.WiFiVersion", - "attribute_name": "WiFiVersion", - "value": 3 - }, - "0/54/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.ChannelNumber", - "attribute_name": "ChannelNumber", - "value": 6 - }, - "0/54/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.Rssi", - "attribute_name": "Rssi", - "value": -61 - }, - "0/54/5": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.BeaconLostCount", - "attribute_name": "BeaconLostCount", - "value": null - }, - "0/54/6": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.BeaconRxCount", - "attribute_name": "BeaconRxCount", - "value": null - }, - "0/54/7": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketMulticastRxCount", - "attribute_name": "PacketMulticastRxCount", - "value": null - }, - "0/54/8": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketMulticastTxCount", - "attribute_name": "PacketMulticastTxCount", - "value": null - }, - "0/54/9": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 9, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketUnicastRxCount", - "attribute_name": "PacketUnicastRxCount", - "value": null - }, - "0/54/10": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 10, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.PacketUnicastTxCount", - "attribute_name": "PacketUnicastTxCount", - "value": null - }, - "0/54/11": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 11, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.CurrentMaxRate", - "attribute_name": "CurrentMaxRate", - "value": null - }, - "0/54/12": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 12, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.OverrunCount", - "attribute_name": "OverrunCount", - "value": null - }, - "0/54/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 3 - }, - "0/54/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/54/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/54/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/54/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 54, - "cluster_type": "chip.clusters.Objects.WiFiNetworkDiagnostics", - "cluster_name": "WiFiNetworkDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.WiFiNetworkDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [ - 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 65528, 65529, 65531, 65532, - 65533 - ] - }, - "0/55/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.PHYRate", - "attribute_name": "PHYRate", - "value": null - }, - "0/55/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.FullDuplex", - "attribute_name": "FullDuplex", - "value": null - }, - "0/55/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.PacketRxCount", - "attribute_name": "PacketRxCount", - "value": 0 - }, - "0/55/3": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 3, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.PacketTxCount", - "attribute_name": "PacketTxCount", - "value": 0 - }, - "0/55/4": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 4, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.TxErrCount", - "attribute_name": "TxErrCount", - "value": 0 - }, - "0/55/5": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 5, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.CollisionCount", - "attribute_name": "CollisionCount", - "value": 0 - }, - "0/55/6": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 6, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.OverrunCount", - "attribute_name": "OverrunCount", - "value": 0 - }, - "0/55/7": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 7, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.CarrierDetect", - "attribute_name": "CarrierDetect", - "value": null - }, - "0/55/8": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 8, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.TimeSinceReset", - "attribute_name": "TimeSinceReset", - "value": 0 - }, - "0/55/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 3 - }, - "0/55/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/55/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/55/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0] - }, - "0/55/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 55, - "cluster_type": "chip.clusters.Objects.EthernetNetworkDiagnostics", - "cluster_name": "EthernetNetworkDiagnostics", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.EthernetNetworkDiagnostics.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 3, 4, 5, 6, 7, 8, 65528, 65529, 65531, 65532, 65533] - }, - "0/59/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/59/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/59/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/59/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [] - }, - "0/59/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 59, - "cluster_type": "chip.clusters.Objects.Switch", - "cluster_name": "Switch", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.Switch.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [65528, 65529, 65531, 65532, 65533] - }, - "0/60/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.WindowStatus", - "attribute_name": "WindowStatus", - "value": 0 - }, - "0/60/1": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 1, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AdminFabricIndex", - "attribute_name": "AdminFabricIndex", - "value": null - }, - "0/60/2": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 2, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AdminVendorId", - "attribute_name": "AdminVendorId", - "value": null - }, - "0/60/65532": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65532, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.FeatureMap", - "attribute_name": "FeatureMap", - "value": 0 - }, - "0/60/65533": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65533, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.ClusterRevision", - "attribute_name": "ClusterRevision", - "value": 1 - }, - "0/60/65528": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65528, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.GeneratedCommandList", - "attribute_name": "GeneratedCommandList", - "value": [] - }, - "0/60/65529": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65529, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AcceptedCommandList", - "attribute_name": "AcceptedCommandList", - "value": [0, 1, 2] - }, - "0/60/65531": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 60, - "cluster_type": "chip.clusters.Objects.AdministratorCommissioning", - "cluster_name": "AdministratorCommissioning", - "attribute_id": 65531, - "attribute_type": "chip.clusters.Objects.AdministratorCommissioning.Attributes.AttributeList", - "attribute_name": "AttributeList", - "value": [0, 1, 2, 65528, 65529, 65531, 65532, 65533] - }, - "0/62/0": { - "node_id": 1, - "endpoint": 0, - "cluster_id": 62, - "cluster_type": "chip.clusters.Objects.OperationalCredentials", - "cluster_name": "OperationalCredentials", - "attribute_id": 0, - "attribute_type": "chip.clusters.Objects.OperationalCredentials.Attributes.NOCs", - "attribute_name": "NOCs", - "value": [ - { - "noc": "b'\\x150\\x01\\x01\\x01$\\x02\\x017\\x03$\\x13\\x02\\x18&\\x04\\x80\"\\x81\\'&\\x05\\x80%M:7\\x06$\\x15\\x01$\\x11\\x01\\x18$\\x07\\x01$\\x08\\x010\\tA\\x04Z\\xec\\xd9\\x11h\\'J[%&\\xe1\\xd8\\xa0\\xb15\\x01\\x9c\\x83\\xf8\\x1a\\x9bg\\xbb\\x81e\\x18\\x8b\\xc8\\x9dr\\xed\\xe7\\xc3\\\\\\xd21\\x99\\xc1\\xdb\\xfe\\xd0}\\xf5)\\xaeMq\\xd5\\xeeRg\\x16\\xd5%\\x9c\\xfcD\\t\\xcbQ\\xc8\\x83*\\x997\\n5\\x01(\\x01\\x18$\\x02\\x016\\x03\\x04\\x02\\x04\\x01\\x180\\x04\\x14\\xca\\xe2\\x07\\xdb\\x89 dict[str, Any]: async def test_matter_attribute_redact(device_diagnostics: dict[str, Any]) -> None: """Test the matter attribute redact helper.""" - assert device_diagnostics["attributes"]["0/40/6"]["value"] == "XX" + assert device_diagnostics["attributes"]["0/40/6"] == "XX" redacted_device_diagnostics = redact_matter_attributes(device_diagnostics) # Check that the correct attribute value is redacted. - assert ( - redacted_device_diagnostics["attributes"]["0/40/6"]["value"] == "**REDACTED**" - ) + assert redacted_device_diagnostics["attributes"]["0/40/6"] == "**REDACTED**" # Check that the other attribute values are not redacted. - redacted_device_diagnostics["attributes"]["0/40/6"]["value"] = "XX" + redacted_device_diagnostics["attributes"]["0/40/6"] = "XX" assert redacted_device_diagnostics == device_diagnostics @@ -107,5 +105,4 @@ async def test_device_diagnostics( diagnostics = await get_diagnostics_for_device( hass, hass_client, config_entry, device ) - assert diagnostics == device_diagnostics_redacted diff --git a/tests/components/matter/test_init.py b/tests/components/matter/test_init.py index d8b2038d134..fac5653f86d 100644 --- a/tests/components/matter/test_init.py +++ b/tests/components/matter/test_init.py @@ -7,9 +7,10 @@ from unittest.mock import AsyncMock, MagicMock, call, patch from aiohttp import ClientWebSocketResponse from matter_server.client.exceptions import CannotConnect, InvalidServerVersion +from matter_server.client.models.node import MatterNode +from matter_server.common.errors import MatterError from matter_server.common.helpers.util import dataclass_from_dict -from matter_server.common.models.error import MatterError -from matter_server.common.models.node import MatterNode +from matter_server.common.models import MatterNodeData import pytest from homeassistant.components.hassio import HassioAPIError @@ -51,9 +52,11 @@ async def test_entry_setup_unload( ) -> None: """Test the integration set up and unload.""" node_data = load_and_parse_node_fixture("onoff-light") - node = dataclass_from_dict( - MatterNode, - node_data, + node = MatterNode( + dataclass_from_dict( + MatterNodeData, + node_data, + ) ) matter_client.get_nodes.return_value = [node] matter_client.get_node.return_value = node diff --git a/tests/components/matter/test_light.py b/tests/components/matter/test_light.py index ad8dfebeec2..a5a858b0b11 100644 --- a/tests/components/matter/test_light.py +++ b/tests/components/matter/test_light.py @@ -66,7 +66,7 @@ async def test_on_off_light( assert matter_client.send_device_command.call_count == 1 assert matter_client.send_device_command.call_args == call( node_id=light_node.node_id, - endpoint=1, + endpoint_id=1, command=clusters.OnOff.Commands.Off(), ) matter_client.send_device_command.reset_mock() @@ -84,7 +84,7 @@ async def test_on_off_light( assert matter_client.send_device_command.call_count == 1 assert matter_client.send_device_command.call_args == call( node_id=light_node.node_id, - endpoint=1, + endpoint_id=1, command=clusters.OnOff.Commands.On(), ) matter_client.send_device_command.reset_mock() @@ -135,7 +135,7 @@ async def test_dimmable_light( assert matter_client.send_device_command.call_count == 1 assert matter_client.send_device_command.call_args == call( node_id=light_node.node_id, - endpoint=1, + endpoint_id=1, command=clusters.LevelControl.Commands.MoveToLevelWithOnOff( level=128, transitionTime=0, @@ -192,7 +192,7 @@ async def test_color_temperature_light( [ call( node_id=light_node.node_id, - endpoint=1, + endpoint_id=1, command=clusters.ColorControl.Commands.MoveToColorTemperature( colorTemperature=3003, transitionTime=0, @@ -200,7 +200,7 @@ async def test_color_temperature_light( ), call( node_id=light_node.node_id, - endpoint=1, + endpoint_id=1, command=clusters.OnOff.Commands.On(), ), ] @@ -268,14 +268,14 @@ async def test_extended_color_light( [ call( node_id=light_node.node_id, - endpoint=1, + endpoint_id=1, command=clusters.ColorControl.Commands.MoveToColor( colorX=0.5 * 65536, colorY=0.5 * 65536, transitionTime=0 ), ), call( node_id=light_node.node_id, - endpoint=1, + endpoint_id=1, command=clusters.OnOff.Commands.On(), ), ] @@ -298,14 +298,14 @@ async def test_extended_color_light( [ call( node_id=light_node.node_id, - endpoint=1, + endpoint_id=1, command=clusters.ColorControl.Commands.MoveToHueAndSaturation( hue=0, saturation=0, transitionTime=0 ), ), call( node_id=light_node.node_id, - endpoint=1, + endpoint_id=1, command=clusters.OnOff.Commands.On(), ), ] diff --git a/tests/components/matter/test_sensor.py b/tests/components/matter/test_sensor.py index ccdf09b8dc9..deaaf62c972 100644 --- a/tests/components/matter/test_sensor.py +++ b/tests/components/matter/test_sensor.py @@ -1,7 +1,7 @@ """Test Matter sensors.""" from unittest.mock import MagicMock -from matter_server.common.models.node import MatterNode +from matter_server.client.models.node import MatterNode import pytest from homeassistant.core import HomeAssistant diff --git a/tests/components/matter/test_switch.py b/tests/components/matter/test_switch.py index 9fe225b1b13..524ea548152 100644 --- a/tests/components/matter/test_switch.py +++ b/tests/components/matter/test_switch.py @@ -2,7 +2,7 @@ from unittest.mock import MagicMock, call from chip.clusters import Objects as clusters -from matter_server.common.models.node import MatterNode +from matter_server.client.models.node import MatterNode import pytest from homeassistant.core import HomeAssistant @@ -46,7 +46,7 @@ async def test_turn_on( assert matter_client.send_device_command.call_count == 1 assert matter_client.send_device_command.call_args == call( node_id=switch_node.node_id, - endpoint=1, + endpoint_id=1, command=clusters.OnOff.Commands.On(), ) @@ -80,6 +80,6 @@ async def test_turn_off( assert matter_client.send_device_command.call_count == 1 assert matter_client.send_device_command.call_args == call( node_id=switch_node.node_id, - endpoint=1, + endpoint_id=1, command=clusters.OnOff.Commands.Off(), )