{ "$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 }