{
    "$schema": "http://json-schema.org/draft-07/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"]
}
