AccuWeather · Schema
RecentLocation
RecentLocation schema from AccuWeather API
WeatherForecastsMeteorologyLocation ServicesAir QualityStorms
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| key | string | |
| name | string | |
| longName | string | |
| displayName | string | |
| localTime | string | |
| displayTemperature | string | |
| icon | integer | |
| color | string | |
| isBefore7PM | boolean | |
| isDayTime | boolean | |
| latitude | number | |
| longitude | number |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/accuweather/refs/heads/main/json-schema/accuweather-recent-location-schema.json",
"title": "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": "integer",
"format": "int32",
"nullable": true
},
"color": {
"type": "string",
"nullable": true
},
"isBefore7PM": {
"type": "boolean"
},
"isDayTime": {
"type": "boolean"
},
"latitude": {
"type": "number",
"format": "double",
"nullable": true
},
"longitude": {
"type": "number",
"format": "double",
"nullable": true
}
},
"additionalProperties": false
}