Skip to content

861 - Travel Itinerary

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

maml
{
  trip: "Bahringerport to Lilliestad"
  traveler: "Trycia Stoltenberg"
  dates: {
    departure: "2026-05-27"
    return: "2026-06-03"
  }

  flights: [
    {
      flight: "0002"
      from: "HNL"
      to: "CKG"
      departure: "06:30"
      seat: "29D"
    }

    {
      flight: "0085"
      from: "KMG"
      to: "CAI"
      departure: "20:00"
      seat: "4E"
    }
  ]

  hotel: {
    name: "Farrell - Schneider-O'Keefe Hotel"
    address: "212 Willow Grove"
    check_in: "14:00"
    check_out: "11:00"
    confirmation: "KEVT789C"
  }
}

See Also