UNPKG

ocpp-standard-schema

Version:

Contains OCPP JSON schemas for validation purposes

40 lines (39 loc) 973 B
{ "type": "object", "properties": { "configurationKey": { "type": "array", "items": { "type": "object", "properties": { "key": { "type": "string", "maxLength": 50 }, "readonly": { "type": "boolean" }, "value": { "type": "string", "maxLength": 1000 } }, "required": [ "key", "readonly" ] } }, "unknownKey": { "type": "array", "items": { "type": "string", "maxLength": 50 } } }, "required": [ "configurationKey" ], "additionalProperties": false }