Requests PDU validation (#139)
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 1.6 / BootNotification.json
1 {
2 "$schema": "http://json-schema.org/draft-04/schema#",
3 "id": "urn:OCPP:1.6:2019:12:BootNotificationRequest",
4 "title": "BootNotificationRequest",
5 "type": "object",
6 "properties": {
7 "chargePointVendor": {
8 "type": "string",
9 "maxLength": 20
10 },
11 "chargePointModel": {
12 "type": "string",
13 "maxLength": 20
14 },
15 "chargePointSerialNumber": {
16 "type": "string",
17 "maxLength": 50
18 },
19 "chargeBoxSerialNumber": {
20 "type": "string",
21 "maxLength": 50
22 },
23 "firmwareVersion": {
24 "type": "string",
25 "maxLength": 50
26 },
27 "iccid": {
28 "type": "string",
29 "maxLength": 20
30 },
31 "imsi": {
32 "type": "string",
33 "maxLength": 20
34 },
35 "meterType": {
36 "type": "string",
37 "maxLength": 25
38 },
39 "meterSerialNumber": {
40 "type": "string",
41 "maxLength": 50
42 }
43 },
44 "additionalProperties": false,
45 "required": ["chargePointVendor", "chargePointModel"]
46 }