AccuWeather · JSON Structure

Accuweather Quantity Range Estimate Structure

QuantityRangeEstimate schema from AccuWeather API

Type: object Properties: 5
WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

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

Properties

displayAmount low high probability phrase

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-quantity-range-estimate-structure.json",
  "name": "QuantityRangeEstimate",
  "description": "QuantityRangeEstimate schema from AccuWeather API",
  "type": "object",
  "properties": {
    "displayAmount": {
      "type": "string",
      "nullable": true
    },
    "low": {
      "type": "object",
      "properties": {
        "value": {
          "type": "float",
          "nullable": true
        },
        "unit": {
          "type": "string",
          "nullable": true
        },
        "unitType": {
          "type": "int32"
        }
      },
      "additionalProperties": false
    },
    "high": {
      "type": "object",
      "properties": {
        "value": {
          "type": "float",
          "nullable": true
        },
        "unit": {
          "type": "string",
          "nullable": true
        },
        "unitType": {
          "type": "int32"
        }
      },
      "additionalProperties": false
    },
    "probability": {
      "type": "int32",
      "nullable": true
    },
    "phrase": {
      "type": "string",
      "nullable": true
    }
  }
}