Skip to content

2465 - Travel Itinerary

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

maml
{
  trip: "Orlando to Taylorsville"
  traveler: "Levi Wilderman"
  dates: {
    departure: "2026-04-28"
    return: "2026-05-08"
  }

  flights: [
    {
      flight: "6975"
      from: "YYZ"
      to: "SCL"
      departure: "18:45"
      seat: "21A"
    }

    {
      flight: "0039"
      from: "CLO"
      to: "ARN"
      departure: "16:20"
      seat: "20E"
    }
  ]

  hotel: {
    name: "Bauch, Bartell and Leuschke Hotel"
    address: "5326 Tudor Close"
    check_in: "16:00"
    check_out: "12:00"
    confirmation: "KM2RCMZW"
  }
}

See Also