ocpp-messages
Version:
TypeScript definitions for Open Charge Point Protocol (OCPP)
24 lines (23 loc) • 548 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "FirmwareStatusNotificationRequest",
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"Downloaded",
"DownloadFailed",
"Downloading",
"Idle",
"InstallationFailed",
"Installing",
"Installed"
]
}
},
"additionalProperties": false,
"required": [
"status"
]
}