AccuWeather · Schema

Polygon

Polygon schema from AccuWeather API

WeatherForecastsMeteorologyLocation ServicesAir QualityStorms

Properties

Name Type Description
type string
coordinates array
View JSON Schema on GitHub

JSON Schema

accuweather-polygon-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-polygon-schema.json",
  "title": "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": "number",
            "format": "double"
          }
        }
      },
      "nullable": true
    }
  },
  "additionalProperties": false
}