forked from csa-iot/data-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MeterIdentification.xml
91 lines (91 loc) · 3.9 KB
/
MeterIdentification.xml
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0"?>
<!--
Zigbee Alliance owns the copyright to the text and content displayed or
included in this document (including in PDF, XML files and other formats) in
all forms of media, which copyright is protected by the copyright laws of the
United States and by international treaties. Full text of licensing terms
applicable to this document can be found in the LICENSE.md file.
-->
<zcl:cluster xmlns:zcl="http://zigbee.org/zcl/clusters"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:type="http://zigbee.org/zcl/types"
xmlns:xi="http://www.w3.org/2001/XInclude"
xsi:schemaLocation="http://zigbee.org/zcl/clusters cluster.xsd http://zigbee.org/zcl/types type.xsd"
id="0B01" revision="2" name="MeterIdentification">
<classification role="application" picsCode="MTRID" primaryTransaction="2" />
<server>
<attributes>
<attribute id="0000" name="CompanyName" type="string" required="true" >
<restriction>
<type:minLength value="0" />
<type:maxLength value="16" />
</restriction>
</attribute>
<!-- See CCB #2817. Type enum16 is more appropriate here. -->
<attribute id="0001" name="MeterTypeID" type="uint16" required="true">
<restriction>
<type:enumeration value="0000" name="UtilityPrimaryMeter" />
<type:enumeration value="0001" name="UtilityProductionMeter" />
<type:enumeration value="0002" name="UtilitySecondaryMeter" />
<type:enumeration value="0100" name="PrivatePrimaryMeter" />
<type:enumeration value="0101" name="PrivateProductionMeter" />
<type:enumeration value="0102" name="PrivateSecondaryMeters" />
<type:enumeration value="0110" name="GenericMeter" />
</restriction>
</attribute>
<!-- See CCB #2817. Type enum16 is more appropriate here. -->
<attribute id="0004" name="DataQualityID" type="uint16" required="true">
<restriction>
<type:enumeration value="0000" name="AllDataCertified" />
<type:enumeration value="0001" name="OnlyInstantaneousPowerNotCertified" />
<type:enumeration value="0002" name="OnlyCumulatedConsumptionNotCertified" />
<type:enumeration value="0003" name="NotCertifiedData" />
</restriction>
</attribute>
<attribute id="0005" name="CustomerName" type="string" writable="true" >
<restriction>
<type:minLength value="0" />
<type:maxLength value="16" />
</restriction>
</attribute>
<attribute id="0006" name="Model" type="octstr" >
<restriction>
<type:minLength value="0" />
<type:maxLength value="16" />
</restriction>
</attribute>
<attribute id="0007" name="PartNumber" type="octstr" >
<restriction>
<type:minLength value="0" />
<type:maxLength value="16" />
</restriction>
</attribute>
<attribute id="0008" name="ProductRevision" type="octstr" >
<restriction>
<type:minLength value="0" />
<type:maxLength value="6" />
</restriction>
</attribute>
<attribute id="000A" name="SoftwareRevision" type="octstr" >
<restriction>
<type:minLength value="0" />
<type:maxLength value="6" />
</restriction>
</attribute>
<attribute id="000B" name="UtilityName" type="string" >
<restriction>
<type:minLength value="0" />
<type:maxLength value="16" />
</restriction>
</attribute>
<attribute id="000C" name="POD" type="string" required="true" >
<restriction>
<type:minLength value="0" />
<type:maxLength value="16" />
</restriction>
</attribute>
<attribute id="000D" name="AvailablePower" type="int24" required="true" />
<attribute id="000E" name="PowerThreshold" type="int24" required="true" />
</attributes>
</server>
</zcl:cluster>