﻿{
  "$schema": "http://json-schema.org/draft-06/schema#",
  "$id": "urn:OCPP:Cp:2:2018:4:PublishFirmwareStatusNotificationRequest",
  "comment": "OCPP 2.0 - v1p0",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "status": {
      "type": "string",
      "additionalProperties": true,
      "enum": [
        "Downloaded",
        "DownloadFailed",
        "Downloading",
        "DownloadScheduled",
        "DownloadPaused",
        "PublishFailed",
        "Published",
        "InvalidChecksum",
        "ChecksumVerified"
      ]
    },
    "location": {
      "type": "array",
      "additionalItems": false,
      "items": {
        "type": "string",
        "maxLength": 512
      },
      "minItems": 1
    }
  },
  "required": [
    "status"
  ]
}