-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathOCPPCommCtrlr.json
362 lines (362 loc) · 11.3 KB
/
OCPPCommCtrlr.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Schema for OCPPCommCtrlr",
"name": "OCPPCommCtrlr",
"type": "object",
"properties": {
"OCPPCommCtrlrEnabled": {
"variable_name": "Enabled",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": true
}
],
"type": "boolean"
},
"ActiveNetworkProfile": {
"variable_name": "ActiveNetworkProfile",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Indicates the configuration profile the station uses at that moment to connect to the network.",
"default": 1,
"type": "integer"
},
"FileTransferProtocols": {
"variable_name": "FileTransferProtocols",
"characteristics": {
"valuesList": "FTP,FTPS,HTTP,HTTPS,SFTP",
"supportsMonitoring": true,
"dataType": "MemberList"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": "FTP"
}
],
"description": "List of supported file transfer protocols",
"type": "string"
},
"HeartbeatInterval": {
"variable_name": "HeartbeatInterval",
"characteristics": {
"unit": "s",
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "Interval of inactivity (no OCPP exchanges) with CSMS after which the Charging Station should send HeartbeatRequest.",
"default": "1800",
"type": "integer"
},
"MessageTimeout": {
"variable_name": "MessageTimeout",
"characteristics": {
"unit": "s",
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly",
"value": 60
}
],
"instance": "Default",
"description": "MessageTimeout(Default) specifies after which time a message times out. It is configured in the network connection profile.",
"default": "60",
"type": "integer"
},
"MessageAttemptInterval": {
"variable_name": "MessageAttemptInterval",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer",
"unit": "s"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 10
}
],
"instance": "TransactionEvent",
"description": "MessageAttemptInterval(TransactionEvent) specifies long the Charging Station should wait before resubmitting a TransactionEventRequest message that the CSMS failed to process.",
"default": "10",
"type": "integer"
},
"MessageAttempts": {
"variable_name": "MessageAttempts",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 5
}
],
"instance": "TransactionEvent",
"description": "MessageAttempts(TransactionEvent) specifies how often the Charging Station should try to submit a TransactionEventRequest message when the CSMS fails to process it.",
"default": "5",
"type": "integer"
},
"NetworkConfigurationPriority": {
"variable_name": "NetworkConfigurationPriority",
"characteristics": {
"valuesList": "1,2",
"supportsMonitoring": true,
"dataType": "SequenceList"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 1
}
],
"description": "A comma separated ordered list of the priority of the possible Network Connection Profiles.",
"default": "1",
"type": "string"
},
"NetworkProfileConnectionAttempts": {
"variable_name": "NetworkProfileConnectionAttempts",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 3
}
],
"description": "Specifies the number of connection attempts the Charging Station executes before switching to a different profile.",
"default": "3",
"type": "integer"
},
"OfflineThreshold": {
"variable_name": "OfflineThreshold",
"characteristics": {
"unit": "s",
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 60
}
],
"description": "When the offline period of a Charging Station exceeds the OfflineThreshold it is recommended to send a StatusNotificationRequest for all its Connectors.",
"default": "60",
"type": "integer"
},
"PublicKeyWithSignedMeterValue": {
"variable_name": "PublicKeyWithSignedMeterValue",
"characteristics": {
"valuesList": "Never,OncePerTransaction,EveryMeterValue",
"supportsMonitoring": true,
"dataType": "OptionList"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "This Configuration Variable can be used to configure whether a public key needs to be sent with a signed meter value. Note, that the field is required, so it needs to be present as an empty string when the public key is not sent.",
"type": "string"
},
"QueueAllMessages": {
"variable_name": "QueueAllMessages",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite"
}
],
"description": "When this variable is set to true, the Charging Station will queue all message until they are delivered to the CSMS.",
"type": "boolean"
},
"MessageTypesDiscardForQueueing": {
"variable_name": "MessageTypesDiscardForQueueing",
"characteristics": {
"supportsMonitoring": true,
"dataType": "SequenceList"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"description": "Comma seperated list of message types that shall not be queued (when offline) even in case QueueAllMessages is true. If QueueAllMessages is false, the configuration of this paramater has no effect.",
"type": "string"
},
"ResetRetries": {
"variable_name": "ResetRetries",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 3
}
],
"description": "Number of times to retry a reset of the Charging Station when a reset was unsuccessful",
"default": "3",
"type": "integer"
},
"RetryBackOffRandomRange": {
"variable_name": "RetryBackOffRandomRange",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 2
}
],
"description": "When the Charging Station is reconnecting, after a connection loss, it will use this variable as the maximum value for the random part of the back-off time",
"default": "2",
"type": "integer"
},
"RetryBackOffRepeatTimes": {
"variable_name": "RetryBackOffRepeatTimes",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 2
}
],
"description": "When the Charging Station is reconnecting, after a connection loss, it will use this variable for the amount of times it will double the previous back-off time.",
"default": "2",
"type": "integer"
},
"RetryBackOffWaitMinimum": {
"variable_name": "RetryBackOffWaitMinimum",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 1
}
],
"description": "When the Charging Station is reconnecting, after a connection loss, it will use this variable as the minimum back-off time, the first time it tries to reconnect.",
"default": "1",
"type": "integer"
},
"UnlockOnEVSideDisconnect": {
"variable_name": "UnlockOnEVSideDisconnect",
"characteristics": {
"supportsMonitoring": true,
"dataType": "boolean"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": true
}
],
"description": "When set to true, the Charging Station SHALL unlock the cable on the Charging Station side when the cable is unplugged at the EV. For an EVSE with only fixed cables, the mutability SHALL be ReadOnly and the actual value SHALL be false. For a charging station with fixed cables and sockets, the variable is only applicable to the sockets.",
"default": true,
"type": "boolean"
},
"WebSocketPingInterval": {
"variable_name": "WebSocketPingInterval",
"characteristics": {
"unit": "s",
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadWrite",
"value": 10
}
],
"description": "0 disables client side websocket Ping/Pong. In this case there is either no ping/pong or the server initiates the ping and client responds with Pong. Positive values are interpreted as number of seconds between pings. Negative values are not allowed.",
"default": "30",
"type": "integer"
},
"FieldLength": {
"variable_name": "FieldLength",
"characteristics": {
"supportsMonitoring": true,
"dataType": "integer"
},
"attributes": [
{
"type": "Actual",
"mutability": "ReadOnly"
}
],
"instance": "Get15118EVCertificateResponse.exiResponse",
"description": "This variable is used to report the length of <field> in <message> when it is larger than the length that is defined in the standard OCPP message schema.",
"type": "integer"
}
},
"required": [
"FileTransferProtocols",
"MessageAttemptInterval",
"MessageAttempts",
"MessageTimeout",
"NetworkConfigurationPriority",
"NetworkProfileConnectionAttempts",
"OfflineThreshold",
"ResetRetries",
"RetryBackOffRandomRange",
"RetryBackOffRepeatTimes",
"RetryBackOffWaitMinimum",
"UnlockOnEVSideDisconnect",
"WebSocketPingInterval"
]
}