{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$ref": "#/definitions/ReportCommandResult",
  "definitions": {
    "ReportCommandResult": {
      "type": "array",
      "items": {
        "$ref": "#/definitions/BundleSObjects.PkgBundleVersionInstallReqResult"
      }
    },
    "BundleSObjects.PkgBundleVersionInstallReqResult": {
      "type": "object",
      "additionalProperties": false,
      "properties": {
        "Id": {
          "type": "string"
        },
        "InstallStatus": {
          "$ref": "#/definitions/BundleSObjects.PkgBundleVersionInstallReqStatus"
        },
        "ValidationError": {
          "type": "string"
        },
        "CreatedDate": {
          "type": "string"
        },
        "CreatedById": {
          "type": "string"
        },
        "Error": {
          "type": "array",
          "items": {
            "type": "string"
          }
        },
        "PackageBundleVersionId": {
          "type": "string"
        },
        "DevelopmentOrganization": {
          "type": "string"
        }
      },
      "required": [
        "CreatedById",
        "CreatedDate",
        "DevelopmentOrganization",
        "Id",
        "InstallStatus",
        "PackageBundleVersionId",
        "ValidationError"
      ]
    },
    "BundleSObjects.PkgBundleVersionInstallReqStatus": {
      "type": "string",
      "enum": [
        "Queued",
        "InProgress",
        "Success",
        "Error"
      ]
    }
  }
}