AccuWeather · Schema

ConfidenceQuantity

ConfidenceQuantity schema from AccuWeather API

WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

Properties

Name Type Description
value number
unit string
unitType integer
View JSON Schema on GitHub

JSON Schema

accuweather-confidence-quantity-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-confidence-quantity-schema.json",
  "title": "ConfidenceQuantity",
  "description": "ConfidenceQuantity schema from AccuWeather API",
  "type": "object",
  "properties": {
    "value": {
      "type": "number",
      "format": "float",
      "nullable": true
    },
    "unit": {
      "type": "string",
      "nullable": true
    },
    "unitType": {
      "type": "integer",
      "format": "int32"
    }
  },
  "additionalProperties": false
}