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

21 lines (20 loc) 418 B
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "ChangeConfigurationRequest", "type": "object", "properties": { "key": { "type": "string", "maxLength": 50 }, "value": { "type": "string", "maxLength": 500 } }, "additionalProperties": false, "required": [ "key", "value" ] }