Skip to content

162 - Travel Itinerary

A multi-day travel plan. This is an example of a MAML document.

maml
{
  trip: "Port Euna to Fort Ellaberg"
  traveler: "Yvette Moore"
  dates: {
    departure: "2026-05-05"
    return: "2026-05-18"
  }

  flights: [
    {
      flight: "0076"
      from: "PHX"
      to: "MIA"
      departure: "18:45"
      seat: "12A"
    }

    {
      flight: "0002"
      from: "DUB"
      to: "ATL"
      departure: "20:00"
      seat: "23E"
    }
  ]

  hotel: {
    name: "O'Keefe - Abshire Hotel"
    address: "3496 Hermann Cove"
    check_in: "14:00"
    check_out: "10:00"
    confirmation: "DVL6PFPW"
  }
}

See Also