AccuWeather · JSON Structure

Accuweather Device Info Structure

DeviceInfo schema from AccuWeather API

Type: object Properties: 4
WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

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

Properties

name brand version category

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-device-info-structure.json",
  "name": "DeviceInfo",
  "description": "DeviceInfo schema from AccuWeather API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the user's browser.\r\nEg. 'Chrome'",
      "nullable": true
    },
    "brand": {
      "type": "string",
      "description": "Name of the user's device maker.\r\nEg. 'Apple' or 'Samsung'",
      "nullable": true
    },
    "version": {
      "type": "string",
      "description": "Version of the user's browser.\r\nEg. '16'",
      "nullable": true
    },
    "category": {
      "type": "string",
      "description": "One of 'mobile', 'tablet', or 'desktop'",
      "nullable": true
    }
  }
}