Skip to content

Commit 229e6e4

Browse files
committed
Generate additional clusters
1 parent e56d3e7 commit 229e6e4

53 files changed

Lines changed: 16964 additions & 27 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Generator/ClusterGenerator.cs

Lines changed: 87 additions & 25 deletions
Large diffs are not rendered by default.

Generator/Clusters/Channel.xml

Lines changed: 469 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 106 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,106 @@
1+
<?xml version="1.0"?>
2+
<!--
3+
Copyright (C) Connectivity Standards Alliance (2021). All rights reserved.
4+
The information within this document is the property of the Connectivity
5+
Standards Alliance and its use and disclosure are restricted, except as
6+
expressly set forth herein.
7+
8+
Connectivity Standards Alliance hereby grants you a fully-paid, non-exclusive,
9+
nontransferable, worldwide, limited and revocable license (without the right to
10+
sublicense), under Connectivity Standards Alliance's applicable copyright
11+
rights, to view, download, save, reproduce and use the document solely for your
12+
own internal purposes and in accordance with the terms of the license set forth
13+
herein. This license does not authorize you to, and you expressly warrant that
14+
you shall not: (a) permit others (outside your organization) to use this
15+
document; (b) post or publish this document; (c) modify, adapt, translate, or
16+
otherwise change this document in any manner or create any derivative work
17+
based on this document; (d) remove or modify any notice or label on this
18+
document, including this Copyright Notice, License and Disclaimer. The
19+
Connectivity Standards Alliance does not grant you any license hereunder other
20+
than as expressly stated herein.
21+
22+
Elements of this document may be subject to third party intellectual property
23+
rights, including without limitation, patent, copyright or trademark rights,
24+
and any such third party may or may not be a member of the Connectivity
25+
Standards Alliance. Connectivity Standards Alliance members grant other
26+
Connectivity Standards Alliance members certain intellectual property rights as
27+
set forth in the Connectivity Standards Alliance IPR Policy. Connectivity
28+
Standards Alliance members do not grant you any rights under this license. The
29+
Connectivity Standards Alliance is not responsible for, and shall not be held
30+
responsible in any manner for, identifying or failing to identify any or all
31+
such third party intellectual property rights. Please visit www.csa-iot.org for
32+
more information on how to become a member of the Connectivity Standards
33+
Alliance.
34+
35+
This document and the information contained herein are provided on an “AS IS”
36+
basis and the Connectivity Standards Alliance DISCLAIMS ALL WARRANTIES EXPRESS
37+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO (A) ANY WARRANTY THAT THE USE OF THE
38+
INFORMATION HEREIN WILL NOT INFRINGE ANY RIGHTS OF THIRD PARTIES (INCLUDING
39+
WITHOUT LIMITATION ANY INTELLECTUAL PROPERTY RIGHTS INCLUDING PATENT, COPYRIGHT
40+
OR TRADEMARK RIGHTS); OR (B) ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
41+
FOR A PARTICULAR PURPOSE, TITLE OR NONINFRINGEMENT. IN NO EVENT WILL THE
42+
CONNECTIVITY STANDARDS ALLIANCE BE LIABLE FOR ANY LOSS OF PROFITS, LOSS OF
43+
BUSINESS, LOSS OF USE OF DATA, INTERRUPTION OF BUSINESS, OR FOR ANY OTHER
44+
DIRECT, INDIRECT, SPECIAL OR EXEMPLARY, INCIDENTAL, PUNITIVE OR CONSEQUENTIAL
45+
DAMAGES OF ANY KIND, IN CONTRACT OR IN TORT, IN CONNECTION WITH THIS DOCUMENT
46+
OR THE INFORMATION CONTAINED HEREIN, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
47+
LOSS OR DAMAGE.
48+
49+
All company, brand and product names in this document may be trademarks that
50+
are the sole property of their respective owners.
51+
52+
This notice and disclaimer must be included on all copies of this document.
53+
54+
Connectivity Standards Alliance
55+
508 Second Street, Suite 206
56+
Davis, CA 95616, USA
57+
58+
:xrefstyle: basic
59+
-->
60+
<cluster xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="types types.xsd cluster cluster.xsd" id="0x0510" name="Content App Observer Cluster" revision="1">
61+
<revisionHistory>
62+
<revision revision="1" summary="Initial Release"/>
63+
</revisionHistory>
64+
<clusterIds>
65+
<clusterId id="0x0510" name="Content App Observer"/>
66+
</clusterIds>
67+
<classification hierarchy="base" role="application" picsCode="APPOBSERVER" scope="Endpoint"/>
68+
<dataTypes>
69+
<enum name="StatusEnum">
70+
<item value="0" name="Success" summary="Command succeeded">
71+
<mandatoryConform/>
72+
</item>
73+
<item value="1" name="UnexpectedData" summary="Data field in command was not understood by the Observer">
74+
<mandatoryConform/>
75+
</item>
76+
</enum>
77+
</dataTypes>
78+
<commands>
79+
<command id="0x00" name="ContentAppMessage" direction="commandToServer" response="ContentAppMessageResponse">
80+
<access invokePrivilege="operate"/>
81+
<mandatoryConform/>
82+
<field id="0" name="Data" type="string">
83+
<mandatoryConform/>
84+
<constraint type="maxLength" value="500"/>
85+
</field>
86+
<field id="1" name="EncodingHint" type="string">
87+
<optionalConform/>
88+
<constraint type="maxLength" value="100"/>
89+
</field>
90+
</command>
91+
<command id="0x01" name="ContentAppMessageResponse" direction="responseFromServer">
92+
<mandatoryConform/>
93+
<field id="0" name="Status" type="StatusEnum">
94+
<mandatoryConform/>
95+
</field>
96+
<field id="1" name="Data" type="string">
97+
<optionalConform/>
98+
<constraint type="maxLength" value="500"/>
99+
</field>
100+
<field id="2" name="EncodingHint" type="string">
101+
<optionalConform/>
102+
<constraint type="maxLength" value="100"/>
103+
</field>
104+
</command>
105+
</commands>
106+
</cluster>

0 commit comments

Comments
 (0)