AccuWeather · JSON Structure

Accuweather Recent Location Structure

RecentLocation schema from AccuWeather API

Type: object Properties: 13
WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

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

Properties

id key name longName displayName localTime displayTemperature icon color isBefore7PM isDayTime latitude longitude

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-recent-location-structure.json",
  "name": "RecentLocation",
  "description": "RecentLocation schema from AccuWeather API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "nullable": true
    },
    "key": {
      "type": "string",
      "nullable": true
    },
    "name": {
      "type": "string",
      "nullable": true
    },
    "longName": {
      "type": "string",
      "nullable": true
    },
    "displayName": {
      "type": "string",
      "nullable": true
    },
    "localTime": {
      "type": "string",
      "nullable": true
    },
    "displayTemperature": {
      "type": "string",
      "nullable": true
    },
    "icon": {
      "type": "int32",
      "nullable": true
    },
    "color": {
      "type": "string",
      "nullable": true
    },
    "isBefore7PM": {
      "type": "boolean"
    },
    "isDayTime": {
      "type": "boolean"
    },
    "latitude": {
      "type": "double",
      "nullable": true
    },
    "longitude": {
      "type": "double",
      "nullable": true
    }
  }
}