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

27 lines (26 loc) 570 B
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "UpdateFirmwareRequest", "type": "object", "properties": { "location": { "type": "string", "format": "uri" }, "retries": { "type": "number" }, "retrieveDate": { "type": "string", "format": "date-time" }, "retryInterval": { "type": "number" } }, "additionalProperties": false, "required": [ "location", "retrieveDate" ] }