Certificate Installation Status

This message is intended to inform the OEM whenever a keystore certificate (certificates owned by the charging station) has been successfully installed, deleted or the installation failed. This allows the OEM to decide what to do with the corresponding private key (TPM handled).

CertificateInstallationStatusUpdate

Topic: josev/cs. Used to notify OEM of an update in the certificate status.

type

object

properties

  • id

type

string

format

uuid

  • name

const

certificate_installation_status

  • type

const

update

  • data

type

object

properties

  • certificate_type

enum

charging_station_certificate, v2g_certificate

  • private_key_path

type

string

  • status

enum

installed, deleted, failed_installation

Example:

{
 "id": "123e4567-e89b-12d3-a456-426614174000",
 "name": "certificate_installation_status",
 "type": "update",
 "data": {
     "certificate_type": "charging_station_certificate",
     "status": "installed"
 }

}