Skip to content

2169 - Travel Itinerary

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

maml
{
  trip: "Port Travis to South Joanie"
  traveler: "Clarabelle Nikolaus"
  dates: {
    departure: "2026-05-31"
    return: "2026-05-01"
  }

  flights: [
    {
      flight: "0005"
      from: "CBR"
      to: "CNF"
      departure: "09:15"
      seat: "12D"
    }

    {
      flight: "0006"
      from: "BEL"
      to: "FCO"
      departure: "11:30"
      seat: "11A"
    }
  ]

  hotel: {
    name: "Paucek-Balistreri Group Hotel"
    address: "5846 Lola Manors"
    check_in: "15:00"
    check_out: "10:00"
    confirmation: "GZSLJILD"
  }
}

See Also