{
  "$schema": "http://json-schema.org/draft-06/schema#",
  "type": "object",
  "title": "ArchiveExternalNetCDFStorageForecasts",
  "description": "ArchiveExternalNetCDFStorageForecastsResponse PI_JSON",
  "additionalProperties": false,
  "required": [
    "externalNetCDFStorageForecasts"
  ],
  "properties": {
    "externalNetCDFStorageForecasts": {
      "type": "array",
      "description": "External NetCD FStorage Forecasts",
      "items": {
        "$ref": "#/definitions/ExternalNetCDFStorageForecast"
      }
    }
  },
  "definitions": {
    "ExternalNetCDFStorageForecast": {
      "type": "object",
      "required": [
        "forecastTime", "forecastAvailableTime"
      ],
      "additionalProperties": false,
      "properties": {
        "forecastTime": {
          "type": "string"
        },
        "forecastAvailableTime": {
          "type": "string"
        },
        "url": {
          "type": "string"
        },
        "attributes": {
          "type": "array",
          "description": "External NetCD FStorage Forecasts Attributes",
          "items": {
            "$ref": "#/definitions/ExternalNetCDFStorageForecastAttribute"
          }
        }
      }
    },
    "ExternalNetCDFStorageForecastAttribute": {
      "type": "object",
      "required": [
        "name", "value"
      ],
      "additionalProperties": false,
      "properties": {
        "name": {
          "type": "string"
        },
        "value": {
          "type": "string"
        }
      }
    }
  }
}
