UNPKG

@luisiseverywhere/ocpp-schema-types

Version:

A project which uses official ocpp schema data (provided by OCA) and generates the types for request and responses of each occp command

49 lines (48 loc) 1.14 kB
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "BootNotificationRequest", "type": "object", "properties": { "chargePointVendor": { "type": "string", "maxLength": 20 }, "chargePointModel": { "type": "string", "maxLength": 20 }, "chargePointSerialNumber": { "type": "string", "maxLength": 25 }, "chargeBoxSerialNumber": { "type": "string", "maxLength": 25 }, "firmwareVersion": { "type": "string", "maxLength": 50 }, "iccid": { "type": "string", "maxLength": 20 }, "imsi": { "type": "string", "maxLength": 20 }, "meterType": { "type": "string", "maxLength": 25 }, "meterSerialNumber": { "type": "string", "maxLength": 25 } }, "additionalProperties": false, "required": [ "chargePointVendor", "chargePointModel" ] }