ocpp-messages
Version:
TypeScript definitions for Open Charge Point Protocol (OCPP)
29 lines • 676 B
JSON
{
"$schema": "http://json-schema.org/draft-06/schema#",
"$id": "urn:OCPP:Cp:2:2018:4:InstallCertificateRequest",
"comment": "OCPP 2.0 - v1p0",
"type": "object",
"additionalProperties": true,
"properties": {
"certificateType": {
"type": "string",
"additionalProperties": true,
"enum": [
"V2GRootCertficate",
"MORootCertificate",
"CSOSubCA1",
"CSOSubCA2",
"CSMSRootCertificate",
"ManufacturerRootCertificate"
]
},
"certificate": {
"type": "string",
"maxLength": 800
}
},
"required": [
"certificateType",
"certificate"
]
}