AccuWeather · JSON Structure

Accuweather Minute Cast Forecast Structure

MinuteCastForecast schema from AccuWeather API

Type: object Properties: 2
WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

MinuteCastForecast is a JSON Structure definition published by AccuWeather, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

summary60 minutes

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/accuweather/refs/heads/main/json-structure/accuweather-minute-cast-forecast-structure.json",
  "name": "MinuteCastForecast",
  "description": "MinuteCastForecast schema from AccuWeather API",
  "type": "object",
  "properties": {
    "summary60": {
      "type": "string",
      "nullable": true
    },
    "minutes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "displayTime": {
            "type": "string",
            "nullable": true
          },
          "minute": {
            "type": "int32"
          },
          "color": {
            "type": "string",
            "nullable": true
          },
          "dbz": {
            "type": "float",
            "nullable": true
          },
          "precipitationType": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "nullable": true
    }
  }
}