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

33 lines (32 loc) 704 B
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "ReserveNowRequest", "type": "object", "properties": { "connectorId": { "type": "integer" }, "expiryDate": { "type": "string", "format": "date-time" }, "idTag": { "type": "string", "maxLength": 20 }, "parentIdTag": { "type": "string", "maxLength": 20 }, "reservationId": { "type": "integer" } }, "additionalProperties": false, "required": [ "connectorId", "expiryDate", "idTag", "reservationId" ] }