{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/tomorrow/refs/heads/main/json-structure/route-waypoint-structure.json", "name": "RouteWaypoint", "description": "A waypoint on the route.", "type": "object", "properties": { "location": { "type": "array", "items": { "type": "double" }, "minItems": 2, "maxItems": 2, "example": [ -71.0466, 42.3478 ] }, "arrivalTime": { "type": "datetime", "example": "2026-05-30T13:30:00Z" } }, "required": [ "location" ] }