26 lines
659 B
JSON
26 lines
659 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"id": "urn:OCPP:1.6:2019:12:FirmwareStatusNotificationRequest",
|
|
"title": "FirmwareStatusNotificationRequest",
|
|
"type": "object",
|
|
"properties": {
|
|
"status": {
|
|
"type": "string",
|
|
"additionalProperties": false,
|
|
"enum": [
|
|
"Downloaded",
|
|
"DownloadFailed",
|
|
"Downloading",
|
|
"Idle",
|
|
"InstallationFailed",
|
|
"Installing",
|
|
"Installed"
|
|
]
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"status"
|
|
]
|
|
}
|