ocpp-messages
Version:
TypeScript definitions for Open Charge Point Protocol (OCPP)
54 lines • 1.28 kB
JSON
{
"$schema": "http://json-schema.org/draft-06/schema#",
"$id": "urn:OCPP:Cp:2:2018:4:DeleteCertificateRequest",
"comment": "OCPP 2.0 - v1p0",
"definitions": {
"HashAlgorithmEnumType": {
"type": "string",
"additionalProperties": true,
"enum": [
"SHA256",
"SHA384",
"SHA512"
]
},
"CertificateHashDataType": {
"javaType": "CertificateHashData",
"type": "object",
"additionalProperties": true,
"properties": {
"hashAlgorithm": {
"$ref": "#/definitions/HashAlgorithmEnumType"
},
"issuerNameHash": {
"type": "string",
"maxLength": 128
},
"issuerKeyHash": {
"type": "string",
"maxLength": 128
},
"serialNumber": {
"type": "string",
"maxLength": 20
}
},
"required": [
"hashAlgorithm",
"issuerNameHash",
"issuerKeyHash",
"serialNumber"
]
}
},
"type": "object",
"additionalProperties": true,
"properties": {
"certificateHashData": {
"$ref": "#/definitions/CertificateHashDataType"
}
},
"required": [
"certificateHashData"
]
}