-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathInternalCtrlr.json
852 lines (852 loc) · 27 KB
/
InternalCtrlr.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Schema for InternalCtrlr",
"name": "InternalCtrlr",
"type": "object",
"properties": {
"InternalCtrlrEnabled": {
"variable_name": "Enabled",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"default": true,
"type": "boolean"
},
"ChargePointId": {
"variable_name": "ChargePointId",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": "cp001"
}
],
"minLength": 1,
"type": "string"
},
"NetworkConnectionProfiles": {
"variable_name": "NetworkConnectionProfiles",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": "[{\"configurationSlot\": 1, \"connectionData\": {\"messageTimeout\": 30, \"ocppCsmsUrl\": \"ws://localhost:9000\", \"ocppInterface\": \"Wired0\", \"ocppTransport\": \"JSON\", \"ocppVersion\": \"OCPP20\", \"securityProfile\": 1}}]"
}
],
"description": "List of NetworkConnectionProfiles that define the functional and technical parameters of a communication link. Must be a (JSON) string with the format of SetNetworkProfileRequest",
"default": "[{\\\"configurationSlot\\\": 1, \\\"connectionData\\\": {\\\"messageTimeout\\\": 30, \\\"ocppCsmsUrl\\\": \\\"ws://localhost:9000/cp001\\\", \\\"ocppInterface\\\": \\\"Wired0\\\", \\\"ocppTransport\\\": \\\"JSON\\\", \\\"ocppVersion\\\": \\\"OCPP20\\\", \\\"securityProfile\\\": 1}}]\n",
"type": "string"
},
"ChargeBoxSerialNumber": {
"variable_name": "ChargeBoxSerialNumber",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": "012345678"
}
],
"minLength": 1,
"maxLength": 25,
"type": "string"
},
"ChargePointModel": {
"variable_name": "ChargePointModel",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": "EVerestModel"
}
],
"minLength": 1,
"maxLength": 20,
"type": "string"
},
"ChargePointSerialNumber": {
"variable_name": "ChargePointSerialNumber",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"minLength": 1,
"maxLength": 25,
"type": "string"
},
"ChargePointVendor": {
"variable_name": "ChargePointVendor",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": "EVerestVendor"
}
],
"minLength": 1,
"maxLength": 20,
"type": "string"
},
"FirmwareVersion": {
"variable_name": "FirmwareVersion",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": "1.0"
}
],
"minLength": 1,
"maxLength": 50,
"type": "string"
},
"ICCID": {
"variable_name": "ICCID",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"minLength": 1,
"maxLength": 20,
"type": "string"
},
"IMSI": {
"variable_name": "IMSI",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"minLength": 1,
"maxLength": 20,
"type": "string"
},
"MeterSerialNumber": {
"variable_name": "MeterSerialNumber",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"minLength": 1,
"maxLength": 25,
"type": "string"
},
"MeterType": {
"variable_name": "MeterType",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"minLength": 1,
"maxLength": 25,
"type": "string"
},
"SupportedCiphers12": {
"variable_name": "SupportedCiphers12",
"characteristics": {
"valuesList": "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-GCM-SHA384",
"supportsMonitoring": true,
"dataType": "MemberList"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-GCM-SHA384"
}
],
"default": "ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:AES128-GCM-SHA256:AES256-GCM-SHA384",
"minLength": 0,
"type": "string"
},
"SupportedCiphers13": {
"variable_name": "SupportedCiphers13",
"characteristics": {
"valuesList": "TLS_AES_256_GCM_SHA384:TLS_AES_128_GCM_SHA256",
"supportsMonitoring": true,
"dataType": "MemberList"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": "TLS_AES_256_GCM_SHA384:TLS_AES_128_GCM_SHA256"
}
],
"default": "TLS_AES_256_GCM_SHA384:TLS_AES_128_GCM_SHA256",
"minLength": 0,
"type": "string"
},
"AuthorizeConnectorZeroOnConnectorOne": {
"variable_name": "AuthorizeConnectorZeroOnConnectorOne",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"default": true,
"type": "boolean"
},
"LogMessages": {
"variable_name": "LogMessages",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"default": true,
"type": "boolean"
},
"LogMessagesFormat": {
"variable_name": "LogMessagesFormat",
"characteristics": {
"valuesList": "log,html,console,console_detailed,security",
"supportsMonitoring": true,
"dataType": "MemberList"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": "log,html,security"
}
],
"description": "Supported log formats are console, log, html, console_detailed, callback and security. \"security\" logs security events into a seperate logfile",
"default": "log,html,security",
"type": "string"
},
"LogRotation": {
"variable_name": "LogRotation",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Enable log rotation",
"default": false,
"type": "boolean"
},
"LogRotationDateSuffix": {
"variable_name": "LogRotationDateSuffix",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Use a datetime suffix in log rotation files instead of the traditional .0, .1",
"default": false,
"type": "boolean"
},
"LogRotationMaximumFileSize": {
"variable_name": "LogRotationMaximumFileSize",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Maximum file size in bytes for the log file after which it will be rotated. Setting this to 0 disables log rotation.",
"default": 0,
"type": "integer"
},
"LogRotationMaximumFileCount": {
"variable_name": "LogRotationMaximumFileCount",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Maximum amount of files before rotated logs will be deleted. Setting this to 0 disables log rotation.",
"default": 0,
"type": "integer"
},
"SupportedChargingProfilePurposeTypes": {
"variable_name": "SupportedChargingProfilePurposeTypes",
"characteristics": {
"valuesList": "ChargePointMaxProfile,TxDefaultProfile,TxProfile",
"supportsMonitoring": true,
"dataType": "MemberList"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"default": "ChargePointMaxProfile,TxDefaultProfile,TxProfile",
"type": "string"
},
"MaxCompositeScheduleDuration": {
"variable_name": "MaxCompositeScheduleDuration",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"default": "31536000",
"type": "integer"
},
"NumberOfConnectors": {
"variable_name": "NumberOfConnectors",
"characteristics": {
"minLimit": 1,
"maxLimit": 128,
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": 1
}
],
"minimum": 1,
"maximum": 128,
"default": "1",
"type": "integer"
},
"UseSslDefaultVerifyPaths": {
"variable_name": "UseSslDefaultVerifyPaths",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Use default verify paths for validating CSMS server certificate",
"default": true,
"type": "boolean"
},
"VerifyCsmsCommonName": {
"variable_name": "VerifyCsmsCommonName",
"characteristics": {
"supportsMonitoring": false,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"default": true,
"type": "boolean"
},
"UseTPM": {
"description": "Indicates if TPM is used to generate and retrieve private keys for the CSMS leaf certificate",
"variable_name": "UseTPM",
"characteristics": {
"supportsMonitoring": false,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"default": false,
"type": "boolean"
},
"UseTPMSeccLeafCertificate": {
"description": "Indicates if TPM is used to generate and retrieve private keys for the SECC leaf certificate",
"variable_name": "UseTPMSeccLeafCertificate",
"characteristics": {
"supportsMonitoring": false,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"default": false,
"type": "boolean"
},
"VerifyCsmsAllowWildcards": {
"variable_name": "VerifyCsmsAllowWildcards",
"characteristics": {
"supportsMonitoring": false,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"default": false,
"type": "boolean"
},
"IFace": {
"variable_name": "IFace",
"characteristics": {
"supportsMonitoring": false,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"default": "",
"type": "string"
},
"EnableTLSKeylog": {
"variable_name": "EnableTLSKeylog",
"characteristics": {
"supportsMonitoring": false,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"default": false,
"type": "boolean"
},
"TLSKeylogFile": {
"variable_name": "TLSKeylogFile",
"characteristics": {
"supportsMonitoring": false,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"default": "/tmp/ocpp_tlskey.log",
"type": "string"
},
"OcspRequestInterval": {
"variable_name": "OcspRequestInterval",
"characteristics": {
"minLimit": 86400,
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "Interval in seconds used to request OCSP revocation status information on the CSO Sub-CA certificates",
"minimum": 86400,
"default": "604800",
"type": "integer"
},
"WebsocketPingPayload": {
"variable_name": "WebsocketPingPayload",
"characteristics": {
"supportsMonitoring": true,
"dataType": "string"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"default": "hello there",
"type": "string"
},
"WebsocketPongTimeout": {
"variable_name": "WebsocketPongTimeout",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"default": "5",
"type": "integer"
},
"MonitorsProcessingInterval": {
"variable_name": "MonitorsProcessingInterval",
"characteristics": {
"supportsMonitoring": false,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Defines the interval at which the periodic monitors will be processed, in seconds",
"default": "1",
"type": "integer"
},
"MaxCustomerInformationDataLength": {
"variable_name": "MaxCustomerInformationDataLength",
"characteristics": {
"minLimit": 512,
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Maximum number of characters of Customer Information data",
"minimum": 512,
"default": "51200",
"type": "integer"
},
"V2GCertificateExpireCheckInitialDelaySeconds": {
"variable_name": "V2GCertificateExpireCheckInitialDelaySeconds",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Seconds to wait after boot notification to first check the V2G leaf certificate for expiration and potential renewal",
"default": "60",
"type": "integer"
},
"V2GCertificateExpireCheckIntervalSeconds": {
"variable_name": "V2GCertificateExpireCheckIntervalSeconds",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Seconds between two checks for V2G leaf certificate expiration and potential renewal",
"default": "43200",
"type": "integer"
},
"ClientCertificateExpireCheckInitialDelaySeconds": {
"variable_name": "ClientCertificateExpireCheckInitialDelaySeconds",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Seconds to wait after boot notification to first check the client certificate for expiration and potential renewal",
"default": "60",
"type": "integer"
},
"ClientCertificateExpireCheckIntervalSeconds": {
"variable_name": "ClientCertificateExpireCheckIntervalSeconds",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Seconds between two checks for client certificate expiration and potential renewal",
"default": "43200",
"type": "integer"
},
"UpdateCertificateSymlinks": {
"variable_name": "UpdateCertificateSymlinks",
"characteristics": {
"supportsMonitoring": false,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": false
}
],
"default": false,
"type": "boolean"
},
"MessageQueueSizeThreshold": {
"variable_name": "MessageQueueSizeThreshold",
"characteristics": {
"minLimit": 1,
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Threshold for the size of in-memory message queues used to buffer messages (and store e.g. while offline). If threshold is exceeded, messages will be dropped according to OCPP specification to avoid memory issues.",
"minimum": 1,
"type": "integer"
},
"MaxMessageSize": {
"variable_name": "MaxMessageSize",
"characteristics": {
"minLimit": 1,
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Maximum size in bytes for messages sent to the CSMS via websocket. If a message exceeds this size and is eligible to be split into multiple messages, it will be split. Otherwise, this value is ignored.",
"minimum": 1,
"default": "32000",
"type": "integer"
},
"SupportedCriteria": {
"variable_name": "SupportedCriteria",
"characteristics": {
"supportsMonitoring": true,
"dataType": "MemberList",
"valuesList": "Enabled,Active,Problem,Available"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": "Enabled,Active,Available,Problem"
}
],
"description": "List of criteria supported for a get custom report. Enabled,Active,Problem,Available",
"default": "Enabled,Active,Problem,Available",
"type": "string"
},
"RoundClockAlignedTimestamps": {
"variable_name": "RoundClockAlignedTimestamps",
"characteristics": {
"supportsMonitoring": false,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": false
}
],
"description": "If enabled the metervalues configured with the AlignedDataCtrlr will be rounded to the exact time intervals",
"default": false,
"type": "boolean"
},
"ResumeTransactionsOnBoot": {
"variable_name": "ResumeTransactionsOnBoot",
"characteristics": {
"supportsMonitoring": false,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "If enabled the transactions that were active before shutdown will be resumed, if possible",
"default": false,
"type": "boolean"
},
"NetworkConfigTimeout": {
"variable_name": "NetworkConfigTimeout",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer",
"minLimit": 1
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "Timeout value in seconds to wait for a response from a network configuration request",
"minimum": 1,
"default": "60",
"type": "integer"
},
"AllowCSMSRootCertInstallWithUnsecureConnection": {
"variable_name": "AllowCSMSRootCertInstallWithUnsecureConnection",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "The flag that indicates if installation of CSMSRootCertificate is allowed when security profile is 1.",
"default": true,
"type": "boolean"
},
"AllowMFRootCertInstallWithUnsecureConnection": {
"variable_name": "AllowMFRootCertInstallWithUnsecureConnection",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "The flag that indicates if installation of ManufacturerRootCertificate is allowed when security profile is 1.",
"default": true,
"type": "boolean"
},
"AllowSecurityLevelZeroConnections": {
"variable_name": "AllowSecurityLevelZeroConnections",
"characteristics": {
"supportsMonitoring": false,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "If enabled we allow connections using security level 0. This does pose a security risk and is not allowed according to the OCPP spec",
"default": false,
"type": "boolean"
}
},
"required": [
"ChargeBoxSerialNumber",
"ChargePointId",
"ChargePointModel",
"ChargePointVendor",
"FirmwareVersion",
"LogMessagesFormat",
"NetworkConnectionProfiles",
"NumberOfConnectors",
"SupportedCiphers12",
"SupportedCiphers13"
]
}