{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "FirmwareStatusNotificationRequest",
  "type": "object",
  "properties": {
    "status": {
      "type": "string",
      "enum": [
        "Downloaded",
        "DownloadFailed",
        "InstallationFailed",
        "Installed"
      ]
    }
  },
  "required": [
    "status"
  ]
}