AccuWeather · Schema

QuantityRangeEstimate

QuantityRangeEstimate schema from AccuWeather API

WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

Properties

Name Type Description
displayAmount string
low object
high object
probability integer
phrase string
View JSON Schema on GitHub

JSON Schema

accuweather-quantity-range-estimate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/accuweather/refs/heads/main/json-schema/accuweather-quantity-range-estimate-schema.json",
  "title": "QuantityRangeEstimate",
  "description": "QuantityRangeEstimate schema from AccuWeather API",
  "type": "object",
  "properties": {
    "displayAmount": {
      "type": "string",
      "nullable": true
    },
    "low": {
      "type": "object",
      "properties": {
        "value": {
          "type": "number",
          "format": "float",
          "nullable": true
        },
        "unit": {
          "type": "string",
          "nullable": true
        },
        "unitType": {
          "type": "integer",
          "format": "int32"
        }
      },
      "additionalProperties": false
    },
    "high": {
      "type": "object",
      "properties": {
        "value": {
          "type": "number",
          "format": "float",
          "nullable": true
        },
        "unit": {
          "type": "string",
          "nullable": true
        },
        "unitType": {
          "type": "integer",
          "format": "int32"
        }
      },
      "additionalProperties": false
    },
    "probability": {
      "type": "integer",
      "format": "int32",
      "nullable": true
    },
    "phrase": {
      "type": "string",
      "nullable": true
    }
  },
  "additionalProperties": false
}