@citrineos/base
Version:
The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.
65 lines (64 loc) • 2.29 kB
JSON
{
"$id": "SecurityEventNotificationRequest",
"comment": "OCPP 2.0.1 FINAL",
"definitions": {
"CustomDataType": {
"description": "Represents OCPP CustomData. Allows vendor-specific extension properties.",
"javaType": "CustomData",
"type": "object",
"properties": {
"vendorId": {
"type": "string",
"maxLength": 255
}
},
"required": ["vendorId"]
}
},
"type": "object",
"additionalProperties": true,
"properties": {
"customData": {
"$ref": "#/definitions/CustomDataType"
},
"type": {
"description": "Type of the security event. This value should be taken from the Security events list.\r\n",
"type": "string",
"maxLength": 50,
"enum": [
"FirmwareUpdated",
"FailedToAuthenticateAtCsms",
"CsmsFailedToAuthenticate",
"SettingSystemTime",
"StartupOfTheDevice",
"ResetOrReboot",
"SecurityLogWasCleared",
"ReconfigurationOfSecurityParameters",
"MemoryExhaustion",
"InvalidMessages",
"AttemptedReplayAttacks",
"TamperDetectionActivated",
"InvalidFirmwareSignature",
"InvalidFirmwareSigningCertificate",
"InvalidCsmsCertificate",
"InvalidChargingStationCertificate",
"InvalidTLSVersion",
"InvalidTLSCipherSuite",
"MaintenanceLoginAccepted",
"MaintenanceLoginFailed"
]
},
"timestamp": {
"description": "Date and time at which the event occurred.\r\n",
"type": "string",
"format": "date-time",
"pattern": "^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}(?:\\.\\d{1,3})?(?:Z|[+\\-]\\d{2}:\\d{2})$"
},
"techInfo": {
"description": "Additional information about the occurred security event.\r\n",
"type": "string",
"maxLength": 255
}
},
"required": ["type", "timestamp"]
}