UNPKG

ocpp-standard-schema

Version:

Contains OCPP JSON schemas for validation purposes

30 lines (29 loc) 681 B
{ "$schema": "http://json-schema.org/draft-06/schema#", "$id": "urn:OCPP:Cp:1.6:2020:3:GetLog.conf", "definitions": { "LogStatusEnumType": { "type": "string", "additionalProperties": false, "enum": [ "Accepted", "Rejected", "AcceptedCanceled" ] } }, "type": "object", "additionalProperties": false, "properties": { "status": { "$ref": "#/definitions/LogStatusEnumType" }, "filename": { "type": "string", "maxLength": 255 } }, "required": [ "status" ] }