-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathobject_ids.json
9881 lines (9881 loc) · 332 KB
/
object_ids.json
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
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "LWM2M Security",
"id": 0,
"instancetype": "multiple",
"mandatory": true,
"description": "This LwM2M Object provides the keying material of a LwM2M Client appropriate to access a specified LwM2M Server. One Object Instance SHOULD address a LwM2M Bootstrap-Server.\nThese LwM2M Object Resources MUST only be changed by a LwM2M Bootstrap-Server or Bootstrap from Smartcard and MUST NOT be accessible by any other LwM2M Server.",
"resourcedefs": [
{
"id": 0,
"name": "LWM2M Server URI",
"operations": "NONE",
"instancetype": "single",
"mandatory": true,
"type": "string",
"range": "0-255 bytes",
"units": "",
"description": "Uniquely identifies the LwM2M Server or LwM2M Bootstrap-Server. The format of the CoAP URI is defined in Section 6 of RFC 7252."
},
{
"id": 1,
"name": "Bootstrap-Server",
"operations": "NONE",
"instancetype": "single",
"mandatory": true,
"type": "boolean",
"range": "",
"units": "",
"description": "Determines if the current instance concerns a LwM2M Bootstrap-Server (true) or a standard LwM2M Server (false)"
},
{
"id": 2,
"name": "Security Mode",
"operations": "NONE",
"instancetype": "single",
"mandatory": true,
"type": "integer",
"range": "0-4",
"units": "",
"description": "Determines which UDP payload security mode is used\n0: Pre-Shared Key mode\n1: Raw Public Key mode\n2: Certificate mode\n3: NoSec mode\n4: Certificate mode with EST"
},
{
"id": 3,
"name": "Public Key or Identity",
"operations": "NONE",
"instancetype": "single",
"mandatory": true,
"type": "opaque",
"range": "",
"units": "",
"description": "Stores the LwM2M Client’s Certificate (Certificate mode), public key (RPK mode) or PSK Identity (PSK mode). The format is defined in Section E.1.1 of the LwM2M version 1.0 specification."
},
{
"id": 4,
"name": "Server Public Key",
"operations": "NONE",
"instancetype": "single",
"mandatory": true,
"type": "opaque",
"range": "",
"units": "",
"description": "Stores the LwM2M Server’s or LwM2M Bootstrap-Server’s Certificate (Certificate mode), public key (RPK mode). The format is defined in Section E.1.1 of the LwM2M version 1.0 specification."
},
{
"id": 5,
"name": "Secret Key",
"operations": "NONE",
"instancetype": "single",
"mandatory": true,
"type": "opaque",
"range": "",
"units": "",
"description": "Stores the secret key or private key of the security mode. The format of the keying material is defined by the security mode in Section E.1.1 of the LwM2M version 1.0 specification. This Resource MUST only be changed by a bootstrap-server and MUST NOT be readable by any server."
},
{
"id": 6,
"name": "SMS Security Mode",
"operations": "NONE",
"instancetype": "single",
"mandatory": false,
"type": "integer",
"range": "0-255",
"units": "",
"description": "Determines which SMS security mode is used (see section 7.2 of the LwM2M version 1.0 specification)\n0: Reserved for future use\n1: DTLS mode (Device terminated) PSK mode assumed\n2: Secure Packet Structure mode (Smartcard terminated)\n3: NoSec mode\n4: Reserved mode (DTLS mode with multiplexing Security Association support)\n5-203 : Reserved for future use\n204-255: Proprietary modes"
},
{
"id": 7,
"name": "SMS Binding Key Parameters",
"operations": "NONE",
"instancetype": "single",
"mandatory": false,
"type": "opaque",
"range": "6 bytes",
"units": "",
"description": "Stores the KIc, KID, SPI and TAR. The format is defined in Section E.1.2 of the LwM2M version 1.0 specification."
},
{
"id": 8,
"name": "SMS Binding Secret Key(s)",
"operations": "NONE",
"instancetype": "single",
"mandatory": false,
"type": "opaque",
"range": "16-32-48 bytes",
"units": "",
"description": "Stores the values of the key(s) for the SMS binding. \nThis resource MUST only be changed by a bootstrap-server and MUST NOT be readable by any server."
},
{
"id": 9,
"name": "LwM2M Server SMS Number",
"operations": "NONE",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "MSISDN used by the LwM2M Client to send messages to the LwM2M Server via the SMS binding. \nThe LwM2M Client SHALL silently ignore any SMS originated from unknown MSISDN"
},
{
"id": 10,
"name": "Short Server ID",
"operations": "NONE",
"instancetype": "single",
"mandatory": false,
"type": "integer",
"range": "1-65534",
"units": "",
"description": "This identifier uniquely identifies each LwM2M Server configured for the LwM2M Client.\nThis Resource MUST be set when the Bootstrap-Server Resource has false value.\nSpecific ID:0 and ID:65535 values MUST NOT be used for identifying the LwM2M Server (Section 6.3 of the LwM2M version 1.0 specification)."
},
{
"id": 11,
"name": "Client Hold Off Time",
"operations": "NONE",
"instancetype": "single",
"mandatory": false,
"type": "integer",
"range": "",
"units": "s",
"description": "Relevant information for a Bootstrap-Server only.\nThe number of seconds to wait before initiating a Client Initiated Bootstrap once the LwM2M Client has determined it should initiate this bootstrap mode.\nIn case client initiated bootstrap is supported by the LwM2M Client, this resource MUST be supported."
},
{
"id": 12,
"name": "Bootstrap-Server Account Timeout",
"operations": "NONE",
"instancetype": "single",
"mandatory": false,
"type": "integer",
"range": "",
"units": "s",
"description": "The LwM2M Client MUST purge the LwM2M Bootstrap-Server Account after the timeout value given by this resource. The lowest timeout value is 1.\nIf the value is set to 0, or if this resource is not instantiated, the Bootstrap-Server Account lifetime is infinite."
}
]
},
{
"name": "CmdhPolicy",
"id": 2048,
"instancetype": "multiple",
"mandatory": false,
"description": "This Object provides links to a set of rules associated with a specific CSE that governs the behavior of that CSE regarding rejecting, buffering and sending request or response messages via the Mcc reference point.",
"resourcedefs": [
{
"id": 0,
"name": "Name",
"operations": "RW",
"instancetype": "single",
"mandatory": true,
"type": "string",
"range": "",
"units": "",
"description": "Contains the name of a CmdhPolicy Object Instance "
},
{
"id": 1,
"name": "DefaultRule",
"operations": "RW",
"instancetype": "single",
"mandatory": true,
"type": "objlnk",
"range": "",
"units": "",
"description": "1 reference to CmdhDefaults Object Instance"
},
{
"id": 2,
"name": "LimiRules",
"operations": "RW",
"instancetype": "multiple",
"mandatory": true,
"type": "objlnk",
"range": "",
"units": "",
"description": "1 or more references to CmdhLimits Object Instances"
},
{
"id": 3,
"name": "NetworkAccessECRules",
"operations": "RW",
"instancetype": "multiple",
"mandatory": true,
"type": "objlnk",
"range": "",
"units": "",
"description": "1 or more references to CmdhNetworkAccessRules Object Instances"
},
{
"id": 4,
"name": "BufferRules",
"operations": "RW",
"instancetype": "multiple",
"mandatory": true,
"type": "objlnk",
"range": "",
"units": "",
"description": "1 or more references to CmdhBuffer Object Instances"
}
]
},
{
"name": "Digital Input",
"id": 3200,
"instancetype": "multiple",
"mandatory": false,
"description": "Generic digital input for non-specific sensors",
"resourcedefs": [
{
"id": 5500,
"name": "Digital Input State",
"operations": "R",
"instancetype": "single",
"mandatory": true,
"type": "boolean",
"range": "",
"units": "",
"description": "The current state of a digital input."
},
{
"id": 5501,
"name": "Digital Input Counter",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "integer",
"range": "",
"units": "",
"description": "The cumulative value of active state detected."
},
{
"id": 5502,
"name": "Digital Input Polarity",
"operations": "RW",
"instancetype": "single",
"mandatory": false,
"type": "boolean",
"range": "",
"units": "",
"description": "The polarity of the digital input as a Boolean (0 = Normal, 1= Reversed)"
},
{
"id": 5503,
"name": "Digital Input Debounce",
"operations": "RW",
"instancetype": "single",
"mandatory": false,
"type": "integer",
"range": "",
"units": "ms",
"description": "The debounce period in ms. ."
},
{
"id": 5504,
"name": "Digital Input Edge Selection",
"operations": "RW",
"instancetype": "single",
"mandatory": false,
"type": "integer",
"range": "1-3",
"units": "",
"description": "The edge selection as an integer (1 = Falling edge, 2 = Rising edge, 3 = Both Rising and Falling edge)."
},
{
"id": 5505,
"name": "Digital Input Counter Reset",
"operations": "E",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "Reset the Counter value."
},
{
"id": 5750,
"name": "Application Type",
"operations": "RW",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "The application type of the sensor or actuator as a string, for instance, “Air Pressure”"
},
{
"id": 5751,
"name": "Sensor Type",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "The type of the sensor (for instance PIR type)"
}
]
},
{
"name": "Power",
"id": 3328,
"instancetype": "multiple",
"mandatory": false,
"description": "This IPSO object should be used to report power measurements. It also provides resources for minimum and maximum measured values, as well as the minimum and maximum range that can be measured by the sensor. An example measurement unit is Watts (ucum: W). This resource may be used for either real power or apparent power (units= ucum:VA) measurements. The Application type can be use for reactive power or active power for example.\n ",
"resourcedefs": [
{
"id": 5601,
"name": "Min Measured Value",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "Defined by “Units” resource.",
"description": "The minimum value measured by the sensor since power ON or reset"
},
{
"id": 5602,
"name": "Max Measured Value",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "Defined by “Units” resource.",
"description": "The maximum value measured by the sensor since power ON or reset"
},
{
"id": 5603,
"name": "Min Range Value",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "Defined by “Units” resource.",
"description": "The minimum value that can be measured by the sensor"
},
{
"id": 5604,
"name": "Max Range Value",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "Defined by “Units” resource.",
"description": "The maximum value that can be measured by the sensor"
},
{
"id": 5605,
"name": "Reset Min and Max Measured Values",
"operations": "E",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "Reset the Min and Max Measured Values to Current Value"
},
{
"id": 5700,
"name": "Sensor Value",
"operations": "R",
"instancetype": "single",
"mandatory": true,
"type": "float",
"range": "",
"units": "Defined by “Units” resource.",
"description": "Last or Current Measured Value from the Sensor"
},
{
"id": 5701,
"name": "Sensor Units",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "Measurement Units Definition e.g. “Cel” for Temperature in Celsius"
},
{
"id": 5750,
"name": "Application Type",
"operations": "RW",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "The application type of the sensor or actuator as a string depending on the use case"
},
{
"id": 5821,
"name": "Current Calibration",
"operations": "RW",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "Read or Write the current calibration coefficient"
}
]
},
{
"name": "LwM2M Server",
"id": 1,
"instancetype": "multiple",
"mandatory": true,
"description": "This LwM2M Objects provides the data related to a LwM2M Server. A Bootstrap-Server has no such an Object Instance associated to it.",
"resourcedefs": [
{
"id": 0,
"name": "Short Server ID",
"operations": "R",
"instancetype": "single",
"mandatory": true,
"type": "integer",
"range": "1-65535",
"units": "",
"description": "Used as link to associate server Object Instance."
},
{
"id": 1,
"name": "Lifetime",
"operations": "RW",
"instancetype": "single",
"mandatory": true,
"type": "integer",
"range": "",
"units": "s",
"description": "Specify the lifetime of the registration in seconds (see Section 5.3 Registration)."
},
{
"id": 2,
"name": "Default Minimum Period",
"operations": "RW",
"instancetype": "single",
"mandatory": false,
"type": "integer",
"range": "",
"units": "s",
"description": "The default value the LwM2M Client should use for the Minimum Period of an Observation in the absence of this parameter being included in an Observation.\nIf this Resource doesn’t exist, the default value is 0."
},
{
"id": 3,
"name": "Default Maximum Period",
"operations": "RW",
"instancetype": "single",
"mandatory": false,
"type": "integer",
"range": "",
"units": "s",
"description": "The default value the LwM2M Client should use for the Maximum Period of an Observation in the absence of this parameter being included in an Observation."
},
{
"id": 4,
"name": "Disable",
"operations": "E",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "If this Resource is executed, this LwM2M Server Object is disabled for a certain period defined in the Disabled Timeout Resource. After receiving “Execute” operation, LwM2M Client MUST send response of the operation and perform de-registration process, and underlying network connection between the Client and Server MUST be disconnected to disable the LwM2M Server account.\nAfter the above process, the LwM2M Client MUST NOT send any message to the Server and ignore all the messages from the LwM2M Server for the period."
},
{
"id": 5,
"name": "Disable Timeout",
"operations": "RW",
"instancetype": "single",
"mandatory": false,
"type": "integer",
"range": "",
"units": "s",
"description": "A period to disable the Server. After this period, the LwM2M Client MUST perform registration process to the Server. If this Resource is not set, a default timeout value is 86400 (1 day)."
},
{
"id": 6,
"name": "Notification Storing When Disabled or Offline",
"operations": "RW",
"instancetype": "single",
"mandatory": true,
"type": "boolean",
"range": "",
"units": "",
"description": "If true, the LwM2M Client stores “Notify” operations to the LwM2M Server while the LwM2M Server account is disabled or the LwM2M Client is offline. After the LwM2M Server account is enabled or the LwM2M Client is online, the LwM2M Client reports the stored “Notify” operations to the Server.\nIf false, the LwM2M Client discards all the “Notify” operations or temporarily disables the Observe function while the LwM2M Server is disabled or the LwM2M Client is offline.\nThe default value is true.\nThe maximum number of storing Notifications per Server is up to the implementation."
},
{
"id": 7,
"name": "Binding",
"operations": "RW",
"instancetype": "single",
"mandatory": true,
"type": "string",
"range": "The possible values of Resource are listed in 5.3.1.1",
"units": "",
"description": "This Resource defines the transport binding configured for the LwM2M Client.\nIf the LwM2M Client supports the binding specified in this Resource, the LwM2M Client MUST use that transport for the Current Binding Mode."
},
{
"id": 8,
"name": "Registration Update Trigger",
"operations": "E",
"instancetype": "single",
"mandatory": true,
"type": "string",
"range": "",
"units": "",
"description": "If this Resource is executed the LwM2M Client MUST perform an “Update” operation with this LwM2M Server using that transport for the Current Binding Mode."
}
]
},
{
"name": "HostDeviceInfo",
"id": 10241,
"instancetype": "multiple",
"mandatory": true,
"description": "This LWM2M Object provides a range of host device related information which can be queried by the LWM2M Server. The host device is any integrated device with an embedded cellular radio module.",
"resourcedefs": [
{
"id": 5905,
"name": "Host Device Manufacturer",
"operations": "R",
"instancetype": "multiple",
"mandatory": true,
"type": "string",
"range": "",
"units": "",
"description": "Human readable host device manufacturer name"
},
{
"id": 5906,
"name": "Host Device Model Number",
"operations": "R",
"instancetype": "multiple",
"mandatory": true,
"type": "string",
"range": "",
"units": "",
"description": "A host device model identifier (manufacturer specified string)"
},
{
"id": 5907,
"name": "Host Device Unique ID",
"operations": "R",
"instancetype": "multiple",
"mandatory": true,
"type": "string",
"range": "",
"units": "",
"description": "The host device unique ID is assigned by AT&T as the “Device ID” in the onboarding tool and will be stored in"
},
{
"id": 5908,
"name": "Host Device Software Version",
"operations": "R",
"instancetype": "multiple",
"mandatory": true,
"type": "string",
"range": "",
"units": "",
"description": "Current software version of the host device. (manufacturer specified string)."
}
]
},
{
"name": "ActiveCmdhPolicy",
"id": 2049,
"instancetype": "single",
"mandatory": false,
"description": "This Object provides a link to the currently active set of CMDH policies",
"resourcedefs": [
{
"id": 0,
"name": "ActiveLink",
"operations": "RW",
"instancetype": "single",
"mandatory": true,
"type": "objlnk",
"range": "",
"units": "",
"description": "Contains the reference to the CMDH policies (CmdhPolicy Object Instance) currently active for the associated CSE."
}
]
},
{
"name": "Digital Output",
"id": 3201,
"instancetype": "multiple",
"mandatory": false,
"description": "Generic digital output for non-specific actuators",
"resourcedefs": [
{
"id": 5550,
"name": "Digital Output State",
"operations": "RW",
"instancetype": "single",
"mandatory": true,
"type": "boolean",
"range": "",
"units": "",
"description": "The current state of a digital output."
},
{
"id": 5551,
"name": "Digital Output Polarity",
"operations": "RW",
"instancetype": "single",
"mandatory": false,
"type": "boolean",
"range": "",
"units": "",
"description": "The polarity of a digital ouput as a Boolean (0 = Normal, 1= Reversed)."
},
{
"id": 5750,
"name": "Application Type",
"operations": "RW",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "The application type of the output as a string, for instance, “LED”"
}
]
},
{
"name": "Power Factor",
"id": 3329,
"instancetype": "multiple",
"mandatory": false,
"description": "This IPSO object should be used to report a measurement or calculation of the power factor of a reactive electrical load. Power Factor is normally the ratio of non-reactive power to total power. This object also provides resources for minimum and maximum measured values, as well as the minimum and maximum range that can be measured by the sensor.\n ",
"resourcedefs": [
{
"id": 5601,
"name": "Min Measured Value",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "Defined by “Units” resource.",
"description": "The minimum value measured by the sensor since power ON or reset"
},
{
"id": 5602,
"name": "Max Measured Value",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "Defined by “Units” resource.",
"description": "The maximum value measured by the sensor since power ON or reset"
},
{
"id": 5603,
"name": "Min Range Value",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "Defined by “Units” resource.",
"description": "The minimum value that can be measured by the sensor"
},
{
"id": 5604,
"name": "Max Range Value",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "Defined by “Units” resource.",
"description": "The maximum value that can be measured by the sensor"
},
{
"id": 5605,
"name": "Reset Min and Max Measured Values",
"operations": "E",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "Reset the Min and Max Measured Values to Current Value"
},
{
"id": 5700,
"name": "Sensor Value",
"operations": "R",
"instancetype": "single",
"mandatory": true,
"type": "float",
"range": "",
"units": "Defined by “Units” resource.",
"description": "Last or Current Measured Value from the Sensor"
},
{
"id": 5701,
"name": "Sensor Units",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "Measurement Units Definition e.g. “Cel” for Temperature in Celsius"
},
{
"id": 5750,
"name": "Application Type",
"operations": "RW",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "The application type of the sensor or actuator as a string depending on the use case"
},
{
"id": 5821,
"name": "Current Calibration",
"operations": "RW",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "Read or Write the current calibration coefficient"
}
]
},
{
"name": "LwM2M Access Control",
"id": 2,
"instancetype": "multiple",
"mandatory": false,
"description": "Access Control Object is used to check whether the LwM2M Server has access right for performing an operation.",
"resourcedefs": [
{
"id": 0,
"name": "Object ID",
"operations": "R",
"instancetype": "single",
"mandatory": true,
"type": "integer",
"range": "1-65534",
"units": "",
"description": "The Object ID and The Object Instance ID are applied for."
},
{
"id": 1,
"name": "Object Instance ID",
"operations": "R",
"instancetype": "single",
"mandatory": true,
"type": "integer",
"range": "0-65535",
"units": "",
"description": "See Table 20: LwM2M Identifiers."
},
{
"id": 2,
"name": "ACL",
"operations": "RW",
"instancetype": "multiple",
"mandatory": false,
"type": "integer",
"range": "16-bit",
"units": "",
"description": "The Resource Instance ID MUST be the Short Server ID of a certain LwM2M Server for which associated access rights are contained in the Resource Instance value.\nThe Resource Instance ID 0 is a specific ID, determining the ACL Instance which contains the default access rights.\nEach bit set in the Resource Instance value, grants an access right to the LwM2M Server to the corresponding operation.\nThe bit order is specified as below.\n1st LSB: R(Read, Observe, Discover, Write-Attributes)\n2nd LSB: W(Write)\n3rd LSB: E(Execute)\n4th LSB: D(Delete)\n5th LSB: C(Create)\nOther bits are reserved for future use."
},
{
"id": 3,
"name": "Access Control Owner",
"operations": "RW",
"instancetype": "single",
"mandatory": true,
"type": "integer",
"range": "0-65535",
"units": "",
"description": "Short Server ID of a certain LwM2M Server; only such an LwM2M Server can manage the Resources of this Object Instance. \nThe specific value MAX_ID=65535 means this Access Control Object Instance is created and modified during a Bootstrap phase only."
}
]
},
{
"name": "3-Phase Power Meter",
"id": 10242,
"instancetype": "multiple",
"mandatory": false,
"description": "\n This Object provides the information to represent a generic 3-Phase Power Meter.\n ",
"resourcedefs": [
{
"id": 0,
"name": "Manufacturer",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "\n Human readable manufacturer name\n "
},
{
"id": 1,
"name": "Model Number",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "\n A model identifier (manufacturer specified string)\n "
},
{
"id": 2,
"name": "Serial Number",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "\n Serial number of the meter\n "
},
{
"id": 3,
"name": "Description",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "string",
"range": "",
"units": "",
"description": "\n Description of the meter\n "
},
{
"id": 4,
"name": "Tension R",
"operations": "R",
"instancetype": "single",
"mandatory": true,
"type": "float",
"range": "",
"units": "V",
"description": "\n Voltage phase 1 (phase to neutral)\n "
},
{
"id": 5,
"name": "Current R",
"operations": "R",
"instancetype": "single",
"mandatory": true,
"type": "float",
"range": "",
"units": "A",
"description": "\n Current phase 1\n "
},
{
"id": 6,
"name": "Active Power R",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "kW",
"description": "\n Active Power phase 1\n "
},
{
"id": 7,
"name": "Reactive Power R",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "kvar",
"description": "\n Reactive Power phase 1\n "
},
{
"id": 8,
"name": "Inductive Reactive Power R",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "kvarL",
"description": "\n Inductive Reactive Power phase 1\n "
},
{
"id": 9,
"name": "Capacitive Reactive Power R",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "kvarC",
"description": "\n Capacitive Reactive Power phase 1\n "
},
{
"id": 10,
"name": "Apparent Power R",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "kVA",
"description": "\n Apparent Power phase 1\n "
},
{
"id": 11,
"name": "Power Factor R",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "-1..1",
"units": "",
"description": "\n Power Factor phase 1\n "
},
{
"id": 12,
"name": "THD-V R",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "%",
"description": "\n Total Harmonic Distortion phase 1 (Tension)\n "
},
{
"id": 13,
"name": "THD-A R",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "%",
"description": "\n Total Harmonig Distortion phase 1 (Current)\n "
},
{
"id": 14,
"name": "Tension S",
"operations": "R",
"instancetype": "single",
"mandatory": true,
"type": "float",
"range": "",
"units": "V",
"description": "\n Voltage phase 2 (phase to neutral)\n "
},
{
"id": 15,
"name": "Current S",
"operations": "R",
"instancetype": "single",
"mandatory": true,
"type": "float",
"range": "",
"units": "A",
"description": "\n Current phase 2\n "
},
{
"id": 16,
"name": "Active Power S",
"operations": "R",
"instancetype": "single",
"mandatory": false,
"type": "float",
"range": "",
"units": "kW",
"description": "\n Active Power phase 2\n "
},