AccuWeather · JSON Structure

Accuweather Polygon Structure

Polygon schema from AccuWeather API

Type: object Properties: 2
WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

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

Properties

type coordinates

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-polygon-structure.json",
  "name": "Polygon",
  "description": "Polygon schema from AccuWeather API",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "nullable": true
    },
    "coordinates": {
      "type": "array",
      "items": {
        "type": "array",
        "items": {
          "type": "array",
          "items": {
            "type": "double"
          }
        }
      },
      "nullable": true
    }
  }
}