Tomorrow.io · JSON Structure

Route Waypoint Structure

A waypoint on the route.

Type: object Properties: 2 Required: 1
WeatherClimateForecastHistorical WeatherAir QualityPollenFireFloodRoutesMap TilesAviationMaritimePublic APIs

RouteWaypoint is a JSON Structure definition published by Tomorrow.io, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

location arrivalTime

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/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"
  ]
}