ocpp-standard-schema
Version:
Contains OCPP JSON schemas for validation purposes
48 lines (47 loc) • 1.08 kB
JSON
{
"title": "BootNotificationRequest",
"type": "object",
"properties": {
"chargePointVendor": {
"type": "string",
"maxLength": 50
},
"chargePointModel": {
"type": "string",
"maxLength": 50
},
"chargePointSerialNumber": {
"type": "string",
"maxLength": 50
},
"chargeBoxSerialNumber": {
"type": "string",
"maxLength": 50
},
"firmwareVersion": {
"type": "string",
"maxLength": 50
},
"iccid": {
"type": "string",
"maxLength": 50
},
"imsi": {
"type": "string",
"maxLength": 50
},
"meterType": {
"type": "string",
"maxLength": 50
},
"meterSerialNumber": {
"type": "string",
"maxLength": 50
}
},
"additionalProperties": false,
"required": [
"chargePointVendor",
"chargePointModel"
]
}