TlvDeviceType: ObjectSchema<{
    deviceType: FieldType<DeviceTypeId>;
    revision: FieldType<number>;
}> = ...

The device type and revision define endpoint conformance to a release of a device type definition. See the Data Model specification for more information.

Type declaration

  • deviceType: FieldType<DeviceTypeId>

    This shall indicate the device type definition. The endpoint shall conform to the device type definition and cluster specifications required by the device type.

    MatterSpecification.v13.Core § 9.5.5.1.1

  • revision: FieldType<number>

    This is the implemented revision of the device type definition. The endpoint shall conform to this revision of the device type.

    MatterSpecification.v13.Core § 9.5.5.1.2

MatterSpecification.v13.Core § 9.5.5.1