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

23 lines (22 loc) 466 B
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "DataTransferRequest", "type": "object", "properties": { "vendorId": { "type": "string", "maxLength": 255 }, "messageId": { "type": "string", "maxLength": 50 }, "data": { "type": "string" } }, "additionalProperties": false, "required": [ "vendorId" ] }