forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoor-lock-cluster.xml
945 lines (895 loc) · 52.5 KB
/
door-lock-cluster.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
<?xml version="1.0"?>
<!--
Copyright (c) 2021 Project CHIP Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<configurator>
<domain name="CHIP" />
<cluster>
<domain>Closures</domain>
<name>Door Lock</name>
<code>0x0101</code>
<define>DOOR_LOCK_CLUSTER</define>
<description>An interface to a generic way to secure a door</description>
<!-- Abbreviations used in descriptions -->
<tag name="PIN" description="PIN Credential" />
<tag name="RID" description="RFID Credential" />
<tag name="FGP" description="Finger Credentials" />
<tag name="LOG" description="Logging" />
<tag name="WDSCH" description="Week Day Access Schedules" />
<tag name="DPS" description="Door Position Sensor" />
<tag name="FACE" description="Face Credentials" />
<tag name="COTA" description="Credential Over-the-Air Access" />
<tag name="USR" description="User" />
<tag name="NOT" description="Notification" />
<tag name="YDSCH" description="Year Day Access Schedules" />
<tag name="HDSCH" description="Holiday Schedules" />
<tag name="UBOLT" description="Unbolting" />
<tag name="ALIRO" description="Aliro Credential Provisioning" />
<client tick="false" init="false">true</client>
<server tick="false" init="false">true</server>
<!-- Current cluster version -->
<globalAttribute side="either" code="0xFFFD" value="7" />
<!-- Cluster feature map -->
<globalAttribute side="server" code="0xFFFC" value="0x0001">
<featureBit tag="PIN" bit="0">true</featureBit>
<featureBit tag="RID" bit="1">false</featureBit>
<featureBit tag="FGP" bit="2">false</featureBit>
<featureBit tag="LOG" bit="3">false</featureBit>
<featureBit tag="WDSCH" bit="4">true</featureBit>
<featureBit tag="DPS" bit="5">true</featureBit>
<featureBit tag="FACE" bit="6">false</featureBit>
<featureBit tag="COTA" bit="7">true</featureBit>
<featureBit tag="USR" bit="8">true</featureBit> <!-- TODO: Depends on ALIRO, [ PIN | RID | FGP | FACE ]-->
<featureBit tag="NOT" bit="9">false</featureBit>
<featureBit tag="YDSCH" bit="10">true</featureBit>
<featureBit tag="HDSCH" bit="11">true</featureBit>
<featureBit tag="UBOLT" bit="12">true</featureBit>
<featureBit tag="ALIRO" bit="13">true</featureBit>
<featureBit tag="ALBU" bit="14">true</featureBit> <!-- TODO: Depends on ALIRO -->
</globalAttribute>
<features>
<feature bit="0" code="PIN" name="PIN Credential" summary="Lock supports PIN credentials (via keypad, or over-the-air)">
<optionalConform/>
</feature>
<feature bit="1" code="RID" name="RFID Credential" summary="Lock supports RFID credentials">
<optionalConform/>
</feature>
<feature bit="2" code="FGP" name="FingerCredentials" summary="Lock supports finger related credentials (fingerprint, finger vein)">
<otherwiseConform>
<provisionalConform/>
<optionalConform/>
</otherwiseConform>
</feature>
<feature bit="3" code="LOG" name="Logging" summary="Lock supports local/on-lock logging when Events are not supported">
<optionalConform/>
</feature>
<feature bit="4" code="WDSCH" name="WeekDayAccessSchedules" summary="Lock supports week day user access schedules">
<optionalConform/>
</feature>
<feature bit="5" code="DPS" name="DoorPositionSensor" summary="Lock supports a door position sensor that indicates door's state">
<optionalConform/>
</feature>
<feature bit="6" code="FACE" name="FaceCredentials" summary="Lock supports face related credentials (face, iris, retina)">
<otherwiseConform>
<provisionalConform/>
<optionalConform/>
</otherwiseConform>
</feature>
<feature bit="7" code="COTA" name="CredentialsOverTheAirAccess" summary="PIN codes over-the-air supported for lock/unlock operations">
<optionalConform/>
</feature>
<feature bit="8" code="USR" name="User" summary="Lock supports the user commands and database">
<optionalConform>
<orTerm>
<feature name="PIN"/>
<feature name="RID"/>
<feature name="FGP"/>
<feature name="FACE"/>
</orTerm>
</optionalConform>
</feature>
<feature bit="9" code="NOT" name="Notification" summary="Operation and Programming Notifications">
<optionalConform/>
</feature>
<feature bit="10" code="YDSCH" name="YearDayAccessSchedules" summary="Lock supports year day user access schedules">
<optionalConform/>
</feature>
<feature bit="11" code="HDSCH" name="HolidaySchedules" summary="Lock supports holiday schedules">
<optionalConform/>
</feature>
<feature bit="12" code="UBOLT" name="Unbolt" summary="Lock supports unbolting">
<optionalConform/>
</feature>
<feature bit="13" code="ALIRO" name="AliroProvisioning" summary="AliroProvisioning">
<optionalConform/>
</feature>
<feature bit="14" code="ALBU" name="AliroBLEUWB" summary="AliroBLEUWB">
<optionalConform/>
</feature>
</features>
<!-- The principle behind mandatory/optional is the following:
1. If attribute/command is marked as mandatory it should be mandatory here.
2. If attribute/command is marked as optional it should be optional here.
3. Everything that depends on a certain feature is optional because we have no way
of setting up the dependencies here. Dependencies would be probably resolved in the
cluster itself. Those attributes/commands are marked with a special comment. -->
<!-- Attributes -->
<attribute side="server" code="0" define="LOCK_STATE" type="DlLockState" min="0" max="3" isNullable="true" reportable="true" writable="false">LockState</attribute>
<attribute side="server" code="1" define="LOCK_TYPE" type="DlLockType" min="0" max="11" writable="false">LockType</attribute>
<attribute side="server" code="2" define="ACTUATOR_ENABLED" type="boolean" writable="false">ActuatorEnabled</attribute>
<!-- Conformance feature DPS - for now optional -->
<attribute side="server" code="3" define="DOOR_STATE" type="DoorStateEnum" min="0" max="5" isNullable="true" reportable="true" optional="true">DoorState</attribute>
<!-- Conformance feature [DPS] - for now optional -->
<attribute side="server" code="4" define="DOOR_OPEN_EVENTS" type="int32u" writable="true" optional="true">
<description>DoorOpenEvents</description>
<access op="read" role="view" />
<access op="write" role="manage" />
</attribute>
<!-- Conformance feature [DPS] - for now optional -->
<attribute side="server" code="5" define="DOOR_CLOSED_EVENTS" type="int32u" writable="true" optional="true">
<description>DoorClosedEvents</description>
<access op="read" role="view" />
<access op="write" role="manage" />
</attribute>
<!-- Conformance feature [DPS] - for now optional -->
<attribute side="server" code="6" define="OPEN_PERIOD" type="int16u" writable="true" optional="true">
<description>OpenPeriod</description>
<access op="read" role="view" />
<access op="write" role="manage" />
</attribute>
<!-- Conformance feature USR - for now optional -->
<attribute side="server" code="17" define="NUM_TOTAL_USERS_SUPPORTED" type="int16u" default="0" writable="false" optional="true">NumberOfTotalUsersSupported</attribute>
<!-- Conformance feature PIN - for now optional -->
<attribute side="server" code="18" define="NUM_PIN_USERS_SUPPORTED" type="int16u" default="0" writable="false" optional="true">NumberOfPINUsersSupported</attribute>
<!-- Conformance feature RFID - for now optional -->
<attribute side="server" code="19" define="NUM_RFID_USERS_SUPPORTED" type="int16u" default="0" writable="false" optional="true">NumberOfRFIDUsersSupported</attribute>
<!-- Conformance feature WDSCH - for now optional -->
<attribute side="server" code="20" define="NUM_WEEKDAY_SCHEDULES_SUPPORTED_PER_USER" type="int8u" default="0" writable="false" optional="true">NumberOfWeekDaySchedulesSupportedPerUser</attribute>
<!-- Conformance feature YDSCH - for now optional -->
<attribute side="server" code="21" define="NUM_YEARDAY_SCHEDULES_SUPPORTED_PER_USER" type="int8u" default="0" writable="false" optional="true">NumberOfYearDaySchedulesSupportedPerUser</attribute>
<!-- Conformance feature HDSCH - for now optional -->
<attribute side="server" code="22" define="NUM_HOLIDAY_SCHEDULES_SUPPORTED" type="int8u" default="0" writable="false" optional="true">NumberOfHolidaySchedulesSupported</attribute>
<!-- Conformance feature PIN - for now optional -->
<attribute side="server" code="23" define="MAX_PIN_LENGTH" type="int8u" writable="false" optional="true">MaxPINCodeLength</attribute>
<!-- Conformance feature PIN - for now optional -->
<attribute side="server" code="24" define="MIN_PIN_LENGTH" type="int8u" writable="false" optional="true">MinPINCodeLength</attribute>
<!-- Conformance feature RID - for now optional -->
<attribute side="server" code="25" define="MAX_RFID_CODE_LENGTH" type="int8u" writable="false" optional="true">MaxRFIDCodeLength</attribute>
<!-- Conformance feature RID - for now optional -->
<attribute side="server" code="26" define="MIN_RFID_CODE_LENGTH" type="int8u" writable="false" optional="true">MinRFIDCodeLength</attribute>
<!-- Conformance feature USR - for now optional -->
<attribute side="server" code="27" define="CREDENTIAL_RULES_SUPPORT" type="DlCredentialRuleMask" min="0x00" max="0xFF" default="1" writable="false" optional="true">CredentialRulesSupport</attribute>
<!-- Conformance feature USR - for now optional -->
<attribute side="server" code="28" define="NUM_CREDENTIALS_SUPPORTED_PER_USER" type="int8u" default="0" writable="false" optional="true">NumberOfCredentialsSupportedPerUser</attribute>
<attribute side="server" code="33" define="LANGUAGE" type="char_string" length="3" reportable="true" writable="true" optional="true">
<description>Language</description>
<access op="read" role="view" />
<access op="write" role="manage" />
</attribute>
<attribute side="server" code="34" define="LED_SETTINGS" type="int8u" min="0" max="2" reportable="true" default="0" writable="true" optional="true">
<description>LEDSettings</description>
<access op="read" role="view" />
<access op="write" role="manage" />
</attribute>
<attribute side="server" code="35" define="AUTO_RELOCK_TIME" type="int32u" reportable="true" writable="true" optional="true">
<description>AutoRelockTime</description>
<access op="read" role="view" />
<access op="write" role="manage" />
</attribute>
<attribute side="server" code="36" define="SOUND_VOLUME" type="int8u" min="0" max="3" reportable="true" default="0" writable="true" optional="true">
<description>SoundVolume</description>
<access op="read" role="view" />
<access op="write" role="manage" />
</attribute>
<attribute side="server" code="37" define="OPERATING_MODE" type="OperatingModeEnum" min="0" max="4" reportable="true" writable="true">
<description>OperatingMode</description>
<access op="read" role="view" />
<access op="write" role="manage" />
</attribute>
<attribute side="server" code="38" define="SUPPORTED_OPERATING_MODES" type="DlSupportedOperatingModes" min="0x0000" max="0xFFFF" default="0xFFF6" writable="false">SupportedOperatingModes</attribute>
<attribute side="server" code="39" define="DEFAULT_CONFIGURATION_REGISTER" type="DlDefaultConfigurationRegister" min="0x0000" max="0xFFFF" reportable="true" default="0" writable="false" optional="true">DefaultConfigurationRegister</attribute>
<attribute side="server" code="40" define="ENABLE_LOCAL_PROGRAMMING" type="boolean" reportable="true" default="1" writable="true" optional="true">
<description>EnableLocalProgramming</description>
<access op="read" role="view" />
<access op="write" role="administer" />
</attribute>
<attribute side="server" code="41" define="ENABLE_ONE_TOUCH_LOCKING" type="boolean" reportable="true" default="0" writable="true" optional="true">
<description>EnableOneTouchLocking</description>
<access op="read" role="view" />
<access op="write" role="manage" />
</attribute>
<attribute side="server" code="42" define="ENABLE_INSIDE_STATUS_LED" type="boolean" reportable="true" default="0" writable="true" optional="true">
<description>EnableInsideStatusLED</description>
<access op="read" role="view" />
<access op="write" role="manage" />
</attribute>
<attribute side="server" code="43" define="ENABLE_PRIVACY_MODE_BUTTON" type="boolean" reportable="true" default="0" writable="true" optional="true">
<description>EnablePrivacyModeButton</description>
<access op="read" role="view" />
<access op="write" role="manage" />
</attribute>
<attribute side="server" code="44" define="LOCAL_PROGRAMMING_FEATURES" type="DlLocalProgrammingFeatures" min="0x0" max="0x0F" reportable="true" default="0" writable="true" optional="true">
<description>LocalProgrammingFeatures</description>
<access op="read" role="view" />
<access op="write" role="administer" />
</attribute>
<!-- Conformance feature PIN | RID - for now optional -->
<attribute side="server" code="48" define="WRONG_CODE_ENTRY_LIMIT" type="int8u" min="1" max="255" reportable="true" writable="true" optional="true">
<description>WrongCodeEntryLimit</description>
<access op="read" role="view" />
<access op="write" role="administer" />
</attribute>
<!-- Conformance feature PIN | RID - for now optional -->
<attribute side="server" code="49" define="USER_CODE_TEMPORARY_DISABLE_TIME" type="int8u" min="1" max="255" reportable="true" writable="true" optional="true">
<description>UserCodeTemporaryDisableTime</description>
<access op="read" role="view" />
<access op="write" role="administer" />
</attribute>
<!-- Conformance feature [PIN] - for now optional -->
<attribute side="server" code="50" define="SEND_PIN_OVER_THE_AIR" type="boolean" reportable="true" default="0" writable="true" optional="true">
<description>SendPINOverTheAir</description>
<access op="read" role="view" />
<access op="write" role="administer" />
</attribute>
<!-- Conformance feature COTA & PIN - for now optional -->
<attribute side="server" code="51" define="REQUIRE_PIN_FOR_REMOTE_OPERATION" type="boolean" reportable="true" default="0" writable="true" optional="true">
<description>RequirePINforRemoteOperation</description>
<access op="read" role="view" />
<access op="write" role="administer" />
</attribute>
<!-- Attribute SecurityLevel with code 52 is deprecated -->
<!-- Conformance feature [USR] - for now optional -->
<attribute side="server" code="53" define="EXPIRING_USER_TIMEOUT" type="int16u" min="1" max="2880" reportable="true" writable="true" optional="true">
<description>ExpiringUserTimeout</description>
<access op="read" role="view" />
<access op="write" role="administer" />
</attribute>
<!-- Conformance feature [ALIRO] - optional -->
<attribute side="server" code="128" define="ALIRO_READER_VERIFICATION_KEY" type="octet_string" length="65" writable="false" optional="true" isNullable="true" apiMaturity="provisional">
<description>AliroReaderVerificationKey</description>
<access op="read" privilege="administer" />
</attribute>
<!-- Conformance feature [ALIRO] - optional -->
<attribute side="server" code="129" define="ALIRO_READER_GROUP_IDENTIFIER" type="octet_string" length="16" writable="false" optional="true" isNullable="true" apiMaturity="provisional">
<description>AliroReaderGroupIdentifier</description>
<access op="read" privilege="administer" />
</attribute>
<!-- Conformance feature [ALIRO] - optional -->
<attribute side="server" code="130" define="ALIRO_READER_GROUP_SUBIDENTIFIER" type="octet_string" length="16" writable="false" optional="true" apiMaturity="provisional">
<description>AliroReaderGroupSubIdentifier</description>
<access op="read" privilege="administer" />
</attribute>
<!-- Conformance feature [ALIRO] - optional -->
<attribute side="server" code="131" define="ALIRO_EXPEDITED_TRANSACTION_SUPPORTED_PROTOCOL_VERSIONS" type="array" entryType="octet_string" length="16" writable="false" optional="true" apiMaturity="provisional">
<description>AliroExpeditedTransactionSupportedProtocolVersions</description>
<access op="read" privilege="administer" />
</attribute>
<!-- Conformance feature [ALBU] - optional if ALIRO is supported -->
<attribute side="server" code="132" define="ALIRO_GROUP_RESOLVING_KEY" type="octet_string" length="16" writable="false" optional="true" isNullable="true" apiMaturity="provisional">
<description>AliroGroupResolvingKey</description>
<access op="read" privilege="administer" />
</attribute>
<!-- Conformance feature [ALBU] - optional if ALIRO is supported -->
<attribute side="server" code="133" define="ALIRO_SUPPORTED_BLE_UWB_PROTOCOL_VERSIONS" type="array" entryType="octet_string" length="16" writable="false" optional="true" apiMaturity="provisional">
<description>AliroSupportedBLEUWBProtocolVersions</description>
<access op="read" privilege="administer" />
</attribute>
<!-- Conformance feature [ALBU] - optional if ALIRO is supported -->
<attribute side="server" code="134" define="ALIRO_BLE_ADVERTISING_VERSION" type="int8u" writable="false" optional="true" apiMaturity="provisional">
<description>AliroBLEAdvertisingVersion</description>
<access op="read" privilege="administer" />
</attribute>
<!-- Conformance feature [ALIRO] - optional -->
<attribute side="server" code="135" define="NUMBER_OF_ALIRO_CREDENTIAL_ISSUER_KEYS_SUPPORTED" type="int16u" writable="false" optional="true" apiMaturity="provisional">NumberOfAliroCredentialIssuerKeysSupported</attribute>
<!-- Conformance feature [ALIRO] - optional -->
<attribute side="server" code="136" define="NUMBER_OF_ALIRO_ENDPOINT_KEYS_SUPPORTED" type="int16u" writable="false" optional="true" apiMaturity="provisional">NumberOfAliroEndpointKeysSupported</attribute>
<!-- Commands -->
<command source="client" code="0" name="LockDoor" mustUseTimedInvoke="true">
<description>This command causes the lock device to lock the door.</description>
<!-- Conformance feature [COTA & PIN] - for now optional -->
<arg name="PINCode" type="octet_string" optional="true" />
</command>
<command source="client" code="1" name="UnlockDoor" mustUseTimedInvoke="true">
<description>This command causes the lock device to unlock the door.</description>
<!-- Conformance feature [COTA & PIN] - for now optional -->
<arg name="PINCode" type="octet_string" optional="true" />
</command>
<!-- Command Toggle with ID 2 is deprecated/disallowed -->
<command source="client" code="3" name="UnlockWithTimeout" mustUseTimedInvoke="true" optional="true">
<description>This command causes the lock device to unlock the door with a timeout parameter.</description>
<arg name="Timeout" type="int16u" />
<!-- Conformance feature [COTA & PIN] - for now optional -->
<arg name="PINCode" type="octet_string" optional="true" />
</command>
<!-- Conformance feature WDSCH - for now optional -->
<command source="client" code="11" name="SetWeekDaySchedule" optional="true">
<description>Set a weekly repeating schedule for a specified user.</description>
<access op="invoke" role="administer" />
<arg name="WeekDayIndex" type="int8u" />
<arg name="UserIndex" type="int16u" />
<arg name="DaysMask" type="DaysMaskMap" />
<arg name="StartHour" type="int8u" />
<arg name="StartMinute" type="int8u" />
<arg name="EndHour" type="int8u" />
<arg name="EndMinute" type="int8u" />
</command>
<!-- Conformance feature WDSCH - for now optional -->
<command source="client" code="12" name="GetWeekDaySchedule" response="GetWeekDayScheduleResponse" optional="true">
<description>Retrieve the specific weekly schedule for the specific user.</description>
<access op="invoke" role="administer" />
<arg name="WeekDayIndex" type="int8u" />
<arg name="UserIndex" type="int16u" />
</command>
<!-- Conformance feature WDSCH - for now optional -->
<command source="server" code="12" name="GetWeekDayScheduleResponse" disableDefaultResponse="true" optional="true">
<description>Returns the weekly repeating schedule data for the specified schedule index.</description>
<arg name="WeekDayIndex" type="int8u" />
<arg name="UserIndex" type="int16u" />
<arg name="Status" type="DlStatus" />
<arg name="DaysMask" type="DaysMaskMap" optional="true" />
<arg name="StartHour" type="int8u" optional="true" />
<arg name="StartMinute" type="int8u" optional="true" />
<arg name="EndHour" type="int8u" optional="true" />
<arg name="EndMinute" type="int8u" optional="true" />
</command>
<!-- Conformance feature WDSCH - for now optional -->
<command source="client" code="13" name="ClearWeekDaySchedule" optional="true">
<description>Clear the specific weekly schedule or all weekly schedules for the specific user.</description>
<access op="invoke" role="administer" />
<arg name="WeekDayIndex" type="int8u" />
<arg name="UserIndex" type="int16u" />
</command>
<!-- Conformance feature YDSCH - for now optional -->
<command source="client" code="14" name="SetYearDaySchedule" optional="true">
<description>Set a time-specific schedule ID for a specified user.</description>
<access op="invoke" role="administer" />
<arg name="YearDayIndex" type="int8u" />
<arg name="UserIndex" type="int16u" />
<arg name="LocalStartTime" type="epoch_s" />
<arg name="LocalEndTime" type="epoch_s" />
</command>
<!-- Conformance feature YDSCH - for now optional -->
<command source="client" code="15" name="GetYearDaySchedule" response="GetYearDayScheduleResponse" optional="true">
<description>Returns the year day schedule data for the specified schedule and user indexes.</description>
<access op="invoke" role="administer" />
<arg name="YearDayIndex" type="int8u" />
<arg name="UserIndex" type="int16u" />
</command>
<!-- Conformance feature YDSCH - for now optional -->
<command source="server" code="15" name="GetYearDayScheduleResponse" disableDefaultResponse="true" optional="true">
<description>Returns the year day schedule data for the specified schedule and user indexes.</description>
<arg name="YearDayIndex" type="int8u" />
<arg name="UserIndex" type="int16u" />
<arg name="Status" type="DlStatus" />
<arg name="LocalStartTime" type="epoch_s" optional="true" />
<arg name="LocalEndTime" type="epoch_s" optional="true" />
</command>
<!-- Conformance feature YDSCH - for now optional -->
<command source="client" code="16" name="ClearYearDaySchedule" optional="true">
<description>Clears the specific year day schedule or all year day schedules for the specific user.</description>
<access op="invoke" role="administer" />
<arg name="YearDayIndex" type="int8u" />
<arg name="UserIndex" type="int16u" />
</command>
<!-- Conformance feature HDSCH - for now optional -->
<command source="client" code="17" name="SetHolidaySchedule" optional="true">
<description>Set the holiday Schedule by specifying local start time and local end time with respect to any Lock Operating Mode.</description>
<access op="invoke" role="administer" />
<arg name="HolidayIndex" type="int8u" />
<arg name="LocalStartTime" type="epoch_s" />
<arg name="LocalEndTime" type="epoch_s" />
<arg name="OperatingMode" type="OperatingModeEnum" />
</command>
<!-- Conformance feature HDSCH - for now optional -->
<command source="client" code="18" name="GetHolidaySchedule" response="GetHolidayScheduleResponse" optional="true">
<description>Get the holiday schedule for the specified index.</description>
<access op="invoke" role="administer" />
<arg name="HolidayIndex" type="int8u" />
</command>
<!-- Conformance feature HDSCH - for now optional -->
<command source="server" code="18" name="GetHolidayScheduleResponse" disableDefaultResponse="true" optional="true">
<description>Returns the Holiday Schedule Entry for the specified Holiday ID.</description>
<arg name="HolidayIndex" type="int8u" />
<arg name="Status" type="DlStatus" />
<arg name="LocalStartTime" type="epoch_s" optional="true" />
<arg name="LocalEndTime" type="epoch_s" optional="true" />
<arg name="OperatingMode" type="OperatingModeEnum" optional="true" />
</command>
<!-- Conformance feature HDSCH - for now optional -->
<command source="client" code="19" name="ClearHolidaySchedule" optional="true">
<description>Clears the holiday schedule or all holiday schedules.</description>
<access op="invoke" role="administer" />
<arg name="HolidayIndex" type="int8u" />
</command>
<!-- Conformance feature USR - for now optional -->
<command source="client" code="26" name="SetUser" mustUseTimedInvoke="true" optional="true">
<description>Set User into the lock.</description>
<access op="invoke" role="administer" />
<arg name="OperationType" type="DataOperationTypeEnum" />
<arg name="UserIndex" type="int16u" />
<arg name="UserName" type="char_string" isNullable="true" />
<arg name="UserUniqueID" type="int32u" isNullable="true" />
<arg name="UserStatus" type="UserStatusEnum" isNullable="true" />
<arg name="UserType" type="UserTypeEnum" isNullable="true" />
<arg name="CredentialRule" type="CredentialRuleEnum" isNullable="true" />
</command>
<!-- Conformance feature USR - for now optional -->
<command source="client" code="27" name="GetUser" response="GetUserResponse" optional="true">
<description>Retrieve User.</description>
<access op="invoke" role="administer" />
<arg name="UserIndex" type="int16u" />
</command>
<!-- Conformance feature USR - for now optional -->
<command source="server" code="28" name="GetUserResponse" disableDefaultResponse="true" optional="true">
<description>Returns the User for the specified UserIndex.</description>
<arg name="UserIndex" type="int16u" />
<arg name="UserName" type="char_string" isNullable="true" />
<arg name="UserUniqueID" type="int32u" isNullable="true" />
<arg name="UserStatus" type="UserStatusEnum" isNullable="true" />
<arg name="UserType" type="UserTypeEnum" isNullable="true" />
<arg name="CredentialRule" type="CredentialRuleEnum" isNullable="true" />
<arg name="Credentials" type="CredentialStruct" array="true" isNullable="true" />
<arg name="CreatorFabricIndex" type="fabric_idx" isNullable="true" />
<arg name="LastModifiedFabricIndex" type="fabric_idx" isNullable="true" />
<arg name="NextUserIndex" type="int16u" isNullable="true" />
</command>
<!-- Conformance feature USR - for now optional -->
<command source="client" code="29" name="ClearUser" mustUseTimedInvoke="true" optional="true">
<description>Clears a User or all Users.</description>
<access op="invoke" role="administer" />
<arg name="UserIndex" type="int16u" />
</command>
<!-- Conformance feature USR - for now optional -->
<command source="client" code="34" name="SetCredential" response="SetCredentialResponse" mustUseTimedInvoke="true" optional="true">
<description>Set a credential (e.g. PIN, RFID, Fingerprint, etc.) into the lock for a new user, existing user, or ProgrammingUser.</description>
<access op="invoke" role="administer" />
<arg name="OperationType" type="DataOperationTypeEnum" />
<arg name="Credential" type="CredentialStruct" />
<arg name="CredentialData" type="long_octet_string" />
<arg name="UserIndex" type="int16u" isNullable="true" />
<arg name="UserStatus" type="UserStatusEnum" isNullable="true" />
<arg name="UserType" type="UserTypeEnum" isNullable="true" />
</command>
<!-- Conformance feature USR - for now optional -->
<command source="server" code="35" name="SetCredentialResponse" disableDefaultResponse="true" optional="true">
<description>Returns the status for setting the specified credential.</description>
<arg name="Status" type="DlStatus" />
<arg name="UserIndex" type="int16u" isNullable="true" />
<arg name="NextCredentialIndex" type="int16u" isNullable="true" />
</command>
<!-- Conformance feature USR - for now optional -->
<command source="client" code="36" name="GetCredentialStatus" response="GetCredentialStatusResponse" optional="true">
<description>Retrieve the status of a particular credential (e.g. PIN, RFID, Fingerprint, etc.) by index.</description>
<access op="invoke" role="administer" />
<arg name="Credential" type="CredentialStruct" />
</command>
<!-- Conformance feature USR - for now optional -->
<command source="server" code="37" name="GetCredentialStatusResponse" disableDefaultResponse="true" optional="true">
<description>Returns the status for the specified credential.</description>
<arg name="CredentialExists" type="boolean" />
<arg name="UserIndex" type="int16u" isNullable="true" />
<arg name="CreatorFabricIndex" type="fabric_idx" isNullable="true" />
<arg name="LastModifiedFabricIndex" type="fabric_idx" isNullable="true" />
<arg name="NextCredentialIndex" type="int16u" isNullable="true" />
</command>
<!-- Conformance feature USR - for now optional -->
<command source="client" code="38" name="ClearCredential" mustUseTimedInvoke="true" optional="true">
<description>Clear one, one type, or all credentials except ProgrammingPIN credential.</description>
<access op="invoke" role="administer" />
<arg name="Credential" type="CredentialStruct" isNullable="true"/>
</command>
<command source="client" code="39" name="UnboltDoor" mustUseTimedInvoke="true" optional="true">
<description>This command causes the lock device to unlock the door without pulling the latch.</description>
<!-- Conformance feature [COTA & PIN] - for now optional -->
<arg name="PINCode" type="octet_string" optional="true" />
</command>
<command source="client" code="40" name="SetAliroReaderConfig" mustUseTimedInvoke="true" optional="true" apiMaturity="provisional">
<description>This command communicates an Aliro Reader configuration to the lock.</description>
<access op="invoke" privilege="administer" />
<arg name="SigningKey" type="octet_string" length="32" />
<arg name="VerificationKey" type="octet_string" length="65" />
<arg name="GroupIdentifier" type="octet_string" length="16" />
<arg name="GroupResolvingKey" type="octet_string" length="16" optional="true" />
</command>
<command source="client" code="41" name="ClearAliroReaderConfig" mustUseTimedInvoke="true" optional="true" apiMaturity="provisional">
<description>This command clears an existing Aliro Reader configuration for the lock.</description>
<access op="invoke" privilege="administer" />
</command>
<!-- Events -->
<event side="server" code="0" name="DoorLockAlarm" priority="critical">
<description>The door lock cluster provides several alarms which can be sent when there is a critical state on the door lock.</description>
<field id="0" name="AlarmCode" type="AlarmCodeEnum" />
</event>
<!-- Conformance feature DPS - for now optional -->
<event side="server" code="1" name="DoorStateChange" priority="critical" optional="true">
<description>The door lock server sends out a DoorStateChange event when the door lock door state changes.</description>
<field id="0" name="DoorState" type="DoorStateEnum" />
</event>
<event side="server" code="2" name="LockOperation" priority="critical">
<description>The door lock server sends out a LockOperation event when the event is triggered by the various lock operation sources.</description>
<field id="0" name="LockOperationType" type="LockOperationTypeEnum" />
<field id="1" name="OperationSource" type="OperationSourceEnum" />
<field id="2" name="UserIndex" type="int16u" isNullable="true" />
<field id="3" name="FabricIndex" type="fabric_idx" isNullable="true" />
<field id="4" name="SourceNode" type="node_id" isNullable="true" />
<!-- Conformance feature [USR] - for now optional -->
<field id="5" name="Credentials" type="CredentialStruct" array="true" isNullable="true" optional="true" />
</event>
<event side="server" code="3" name="LockOperationError" priority="critical">
<description>The door lock server sends out a LockOperationError event when a lock operation fails for various reasons.</description>
<field id="0" name="LockOperationType" type="LockOperationTypeEnum" />
<field id="1" name="OperationSource" type="OperationSourceEnum" />
<field id="2" name="OperationError" type="OperationErrorEnum" />
<field id="3" name="UserIndex" type="int16u" isNullable="true" />
<field id="4" name="FabricIndex" type="fabric_idx" isNullable="true" />
<field id="5" name="SourceNode" type="node_id" isNullable="true" />
<!-- Conformance feature [USR] - for now optional -->
<field id="6" name="Credentials" type="CredentialStruct" array="true" isNullable="true" optional="true" />
</event>
<event side="server" code="4" name="LockUserChange" priority="info">
<description>The door lock server sends out a LockUserChange event when a lock user, schedule, or credential change has occurred.</description>
<field id="0" name="LockDataType" type="LockDataTypeEnum" />
<field id="1" name="DataOperationType" type="DataOperationTypeEnum" />
<field id="2" name="OperationSource" type="OperationSourceEnum" />
<field id="3" name="UserIndex" type="int16u" isNullable="true" />
<field id="4" name="FabricIndex" type="fabric_idx" isNullable="true" />
<field id="5" name="SourceNode" type="node_id" isNullable="true" />
<field id="6" name="DataIndex" type="int16u" isNullable="true" />
</event>
</cluster>
<!-- Cluster data types -->
<enum name="AlarmCodeEnum" type="enum8">
<cluster code="0x0101" />
<item value="0" name="LockJammed" />
<item value="1" name="LockFactoryReset" />
<item value="3" name="LockRadioPowerCycled" />
<item value="4" name="WrongCodeEntryLimit" />
<item value="5" name="FrontEsceutcheonRemoved" />
<item value="6" name="DoorForcedOpen" />
<item value="7" name="DoorAjar" />
<item value="8" name="ForcedUser" />
</enum>
<enum name="CredentialRuleEnum" type="enum8">
<cluster code="0x0101" />
<item value="0" name="Single" />
<item value="1" name="Dual" />
<item value="2" name="Tri" />
</enum>
<bitmap name="DlCredentialRuleMask" type="bitmap8">
<cluster code="0x0101" />
<field mask="0x01" name="Single" />
<field mask="0x02" name="Dual" />
<field mask="0x04" name="Tri" />
</bitmap>
<struct name="CredentialStruct">
<cluster code="0x0101" />
<item name="CredentialType" type="CredentialTypeEnum" />
<item name="CredentialIndex" type="int16u" />
</struct>
<enum name="CredentialTypeEnum" type="enum8">
<cluster code="0x0101" />
<item value="0" name="ProgrammingPIN" />
<item value="1" name="PIN" />
<item value="2" name="RFID" />
<item value="3" name="Fingerprint" />
<item value="4" name="FingerVein" />
<item value="5" name="Face" />
<item value="6" name="AliroCredentialIssuerKey" />
<item value="7" name="AliroEvictableEndpointKey" />
<item value="8" name="AliroNonEvictableEndpointKey" />
</enum>
<enum name="DataOperationTypeEnum" type="enum8">
<cluster code="0x0101" />
<item value="0" name="Add" />
<item value="1" name="Clear" />
<item value="2" name="Modify" />
</enum>
<bitmap name="DaysMaskMap" type="bitmap8">
<cluster code="0x0101" />
<field mask="0x01" name="Sunday" />
<field mask="0x02" name="Monday" />
<field mask="0x04" name="Tuesday" />
<field mask="0x08" name="Wednesday" />
<field mask="0x10" name="Thursday" />
<field mask="0x20" name="Friday" />
<field mask="0x40" name="Saturday" />
</bitmap>
<enum name="DoorStateEnum" type="enum8">
<cluster code="0x0101" />
<item value="0" name="DoorOpen" />
<item value="1" name="DoorClosed" />
<item value="2" name="DoorJammed" />
<item value="3" name="DoorForcedOpen" />
<item value="4" name="DoorUnspecifiedError" />
<item value="5" name="DoorAjar" />
</enum>
<enum name="LockDataTypeEnum" type="enum8">
<cluster code="0x0101" />
<item value="0" name="Unspecified" />
<item value="1" name="ProgrammingCode" />
<item value="2" name="UserIndex" />
<item value="3" name="WeekDaySchedule" />
<item value="4" name="YearDaySchedule" />
<item value="5" name="HolidaySchedule" />
<item value="6" name="PIN" />
<item value="7" name="RFID" />
<item value="8" name="Fingerprint" />
<item value="9" name="FingerVein" />
<item value="10" name="Face" />
<item value="11" name="AliroCredentialIssuerKey" />
<item value="12" name="AliroEvictableEndpointKey" />
<item value="13" name="AliroNonEvictableEndpointKey" />
</enum>
<enum name="LockOperationTypeEnum" type="enum8">
<cluster code="0x0101" />
<item value="0" name="Lock" />
<item value="1" name="Unlock" />
<item value="2" name="NonAccessUserEvent" />
<item value="3" name="ForcedUserEvent" />
<item value="4" name="Unlatch" />
</enum>
<enum name="OperationErrorEnum" type="enum8">
<cluster code="0x0101" />
<item value="0" name="Unspecified" />
<item value="1" name="InvalidCredential" />
<item value="2" name="DisabledUserDenied" />
<item value="3" name="Restricted" />
<item value="4" name="InsufficientBattery" />
</enum>
<enum name="OperatingModeEnum" type="enum8">
<cluster code="0x0101" />
<item value="0" name="Normal" />
<item value="1" name="Vacation" />
<item value="2" name="Privacy" />
<item value="3" name="NoRemoteLockUnlock" />
<item value="4" name="Passage" />
</enum>
<enum name="OperationSourceEnum" type="enum8">
<cluster code="0x0101" />
<item value="0" name="Unspecified" />
<item value="1" name="Manual" />
<item value="2" name="ProprietaryRemote" />
<item value="3" name="Keypad" />
<item value="4" name="Auto" />
<item value="5" name="Button" />
<item value="6" name="Schedule" />
<item value="7" name="Remote" />
<item value="8" name="RFID" />
<item value="9" name="Biometric" />
<item value="10" name="Aliro" />
</enum>
<enum name="UserStatusEnum" type="enum8">
<cluster code="0x0101" />
<item value="0" name="Available" />
<item value="1" name="OccupiedEnabled" />
<item value="3" name="OccupiedDisabled" />
</enum>
<enum name="UserTypeEnum" type="enum8">
<cluster code="0x0101" />
<item value="0" name="UnrestrictedUser" />
<item value="1" name="YearDayScheduleUser" />
<item value="2" name="WeekDayScheduleUser" />
<item value="3" name="ProgrammingUser" />
<item value="4" name="NonAccessUser" />
<item value="5" name="ForcedUser" />
<item value="6" name="DisposableUser" />
<item value="7" name="ExpiringUser" />
<item value="8" name="ScheduleRestrictedUser" />
<item value="9" name="RemoteOnlyUser" />
</enum>
<!-- Auxiliary data types -->
<!-- LockState Attribute Values -->
<enum name="DlLockState" type="enum8">
<cluster code="0x0101" />
<item value="0" name="Not Fully Locked" />
<item value="1" name="Locked" />
<item value="2" name="Unlocked" />
<item value="3" name="Unlatched" />
</enum>
<!-- LockType Attribute Values -->
<enum name="DlLockType" type="enum8">
<cluster code="0x0101" />
<item value="0" name="Dead bolt" />
<item value="1" name="Magnetic" />
<item value="2" name="Other" />
<item value="3" name="Mortise" />
<item value="4" name="Rim" />
<item value="5" name="Latch Bolt" />
<item value="6" name="Cylindrical Lock" />
<item value="7" name="Tubular Lock" />
<item value="8" name="Interconnected Lock" />
<item value="9" name="Dead Latch" />
<item value="10" name="Door Furniture" />
<item value="11" name="Eurocylinder" />
</enum>
<!-- CredentialRulesSupport attribute bit meaning set -->
<bitmap name="DlCredentialRulesSupport" type="bitmap8">
<cluster code="0x0101" />
<field mask="0x01" name="Single" />
<field mask="0x02" name="Dual" />
<field mask="0x04" name="Tri" />
</bitmap>
<!-- SupportedOperatingModes attribute bit meaning set -->
<bitmap name="DlSupportedOperatingModes" type="bitmap16">
<cluster code="0x0101" />
<field mask="0x01" name="Normal" />
<field mask="0x02" name="Vacation" /> <!-- Could be optional -->
<field mask="0x04" name="Privacy" /> <!-- Could be optional -->
<field mask="0x08" name="NoRemoteLockUnlock" />
<field mask="0x10" name="Passage" /> <!-- Could be optional -->
</bitmap>
<!-- DefaultConfigurationRegister attribute bit meaning set -->
<bitmap name="DlDefaultConfigurationRegister" type="bitmap16">
<cluster code="0x0101" />
<field mask="0x01" name="EnableLocalProgrammingEnabled" />
<field mask="0x02" name="KeypadInterfaceDefaultAccessEnabled" />
<field mask="0x04" name="RemoteInterfaceDefaultAccessIsEnabled" />
<field mask="0x20" name="SoundEnabled" />
<field mask="0x40" name="AutoRelockTimeSet" />
<field mask="0x80" name="LEDSettingsSet" />
</bitmap>
<!-- LocalProgrammingFeatures attribute bit meaning set -->
<bitmap name="DlLocalProgrammingFeatures" type="bitmap8">
<cluster code="0x0101" />
<field mask="0x01" name="AddUsersCredentialsSchedulesLocally" />
<field mask="0x02" name="ModifyUsersCredentialsSchedulesLocally" />
<field mask="0x04" name="ClearUsersCredentialsSchedulesLocally" />
<field mask="0x08" name="AdjustLockSettingsLocally" />
</bitmap>
<!-- KeypadOperationEventMask attribute bit meaning set -->
<bitmap name="DlKeypadOperationEventMask" type="bitmap16">
<cluster code="0x0101" />
<field mask="0x01" name="Unknown" />
<field mask="0x02" name="Lock" />
<field mask="0x04" name="Unlock" />
<field mask="0x08" name="LockInvalidPIN" />
<field mask="0x10" name="LockInvalidSchedule" />
<field mask="0x20" name="UnlockInvalidCode" />
<field mask="0x40" name="UnlockInvalidSchedule" />
<field mask="0x80" name="NonAccessUserOpEvent" />
</bitmap>
<!-- RemoteOperationEventMask attribute bit meaning set -->
<bitmap name="DlRemoteOperationEventMask" type="bitmap16">
<cluster code="0x0101" />
<field mask="0x01" name="Unknown" />
<field mask="0x02" name="Lock" />
<field mask="0x04" name="Unlock" />
<field mask="0x08" name="LockInvalidCode" />
<field mask="0x10" name="LockInvalidSchedule" />
<field mask="0x20" name="UnlockInvalidCode" />
<field mask="0x40" name="UnlockInvalidSchedule" />
</bitmap>
<!-- ManualOperationEventMask attribute bit meaning set -->
<bitmap name="DlManualOperationEventMask" type="bitmap16">
<cluster code="0x0101" />
<field mask="0x001" name="Unknown" />
<field mask="0x002" name="ThumbturnLock" />
<field mask="0x004" name="ThumbturnUnlock" />
<field mask="0x008" name="OneTouchLock" />
<field mask="0x010" name="KeyLock" />
<field mask="0x020" name="KeyUnlock" />
<field mask="0x040" name="AutoLock" />
<field mask="0x080" name="ScheduleLock" />
<field mask="0x100" name="ScheduleUnlock" />
<field mask="0x200" name="ManualLock" />
<field mask="0x400" name="ManualUnlock" />
</bitmap>
<!-- RFIDOperationEventMask attribute bit meaning set -->
<bitmap name="DlRFIDOperationEventMask" type="bitmap16">
<cluster code="0x0101" />
<field mask="0x01" name="Unknown" />
<field mask="0x02" name="Lock" />
<field mask="0x04" name="Unlock" />
<field mask="0x08" name="LockInvalidRFID" />
<field mask="0x10" name="LockInvalidSchedule" />
<field mask="0x20" name="UnlockInvalidRFID" />
<field mask="0x40" name="UnlockInvalidSchedule" />
</bitmap>
<!-- KeypadProgrammingEventMask attribute bit meaning set -->
<bitmap name="DlKeypadProgrammingEventMask" type="bitmap16">
<cluster code="0x0101" />
<field mask="0x01" name="Unknown" />
<field mask="0x02" name="ProgrammingPINChanged" />
<field mask="0x04" name="PINAdded" />
<field mask="0x08" name="PINCleared" />
<field mask="0x10" name="PINChanged" />
</bitmap>
<!-- RemoteProgrammingEventMask attribute bit meaning set -->
<bitmap name="DlRemoteProgrammingEventMask" type="bitmap16">
<cluster code="0x0101" />
<field mask="0x01" name="Unknown" />
<field mask="0x02" name="ProgrammingPINChanged" />
<field mask="0x04" name="PINAdded" />
<field mask="0x08" name="PINCleared" />
<field mask="0x10" name="PINChanged" />
<field mask="0x20" name="RFIDCodeAdded" />
<field mask="0x40" name="RFIDCodeCleared" />
</bitmap>
<!-- RFIDProgrammingEventMask attribute bit meaning set -->
<bitmap name="DlRFIDProgrammingEventMask" type="bitmap16">
<cluster code="0x0101" />
<field mask="0x01" name="Unknown" />
<field mask="0x20" name="RFIDCodeAdded" />
<field mask="0x40" name="RFIDCodeCleared" />
</bitmap>
<enum name="DlStatus" type="enum8">
<cluster code="0x0101" />
<item value="0x00" name="Success" />
<item value="0x01" name="Failure" />
<item value="0x02" name="Duplicate" />
<item value="0x03" name="Occupied" />
<item value="0x85" name="InvalidField" />
<item value="0x89" name="ResourceExhausted" />
<item value="0x8B" name="NotFound" />
</enum>
<enum name="DoorLockSetPinOrIdStatus" type="enum8">
<cluster code="0x0101"/>
<item name="Success" value="0x00"/>
<item name="GeneralFailure" value="0x01"/>
<item name="MemoryFull" value="0x02"/>
<item name="DuplicateCodeError" value="0x03"/>
</enum>
<enum name="DoorLockOperationEventCode" type="enum8">
<cluster code="0x0101"/>
<item name="UnknownOrMfgSpecific" value="0x00"/>
<item name="Lock" value="0x01"/>
<item name="Unlock" value="0x02"/>
<item name="LockInvalidPinOrId" value="0x03"/>
<item name="LockInvalidSchedule" value="0x04"/>
<item name="UnlockInvalidPinOrId" value="0x05"/>
<item name="UnlockInvalidSchedule" value="0x06"/>
<item name="OneTouchLock" value="0x07"/>
<item name="KeyLock" value="0x08"/>
<item name="KeyUnlock" value="0x09"/>
<item name="AutoLock" value="0x0A"/>
<item name="ScheduleLock" value="0x0B"/>
<item name="ScheduleUnlock" value="0x0C"/>
<item name="ManualLock" value="0x0D"/>
<item name="ManualUnlock" value="0x0E"/>
</enum>
<enum name="DoorLockProgrammingEventCode" type="enum8">
<cluster code="0x0101"/>
<item name="UnknownOrMfgSpecific" value="0x00"/>
<item name="MasterCodeChanged" value="0x01"/>
<item name="PinAdded" value="0x02"/>
<item name="PinDeleted" value="0x03"/>
<item name="PinChanged" value="0x04"/>
<item name="IdAdded" value="0x05"/>
<item name="IdDeleted" value="0x06"/>
</enum>
<enum name="DoorLockUserStatus" type="enum8">
<cluster code="0x0101"/>
<item name="Available" value="0x00"/>
<item name="OccupiedEnabled" value="0x01"/>
<item name="OccupiedDisabled" value="0x03"/>
<item name="NotSupported" value="0xFF"/>
</enum>
<enum name="DoorLockUserType" type="enum8">
<cluster code="0x0101"/>
<item name="Unrestricted" value="0x00"/>
<item name="YearDayScheduleUser" value="0x01"/>
<item name="WeekDayScheduleUser" value="0x02"/>
<item name="MasterUser" value="0x03"/>
<item name="NonAccessUser" value="0x04"/>
<item name="NotSupported" value="0xFF"/>
</enum>
<bitmap name="DoorLockDayOfWeek" type="bitmap8">
<cluster code="0x0101"/>
<field name="Sunday" mask="0x01"/>
<field name="Monday" mask="0x02"/>
<field name="Tuesday" mask="0x04"/>
<field name="Wednesday" mask="0x08"/>
<field name="Thursday" mask="0x10"/>
<field name="Friday" mask="0x20"/>
<field name="Saturday" mask="0x40"/>
</bitmap>
</configurator>