UNPKG

ocpp-standard-schema

Version:

Contains OCPP JSON schemas for validation purposes

29 lines (28 loc) 707 B
{ "$schema": "http://json-schema.org/draft-06/schema#", "$id": "urn:OCPP:Cp:1.6:2020:3:InstallCertificate.req", "definitions": { "CertificateUseEnumType": { "type": "string", "enum": [ "CentralSystemRootCertificate", "ManufacturerRootCertificate" ] } }, "type": "object", "additionalProperties": false, "properties": { "certificateType": { "$ref": "#/definitions/CertificateUseEnumType" }, "certificate": { "type": "string", "maxLength": 5500 } }, "required": [ "certificateType", "certificate" ] }