การจองรถโดยสาร

กรณีการใช้งาน

กรณีการใช้งานต่อไปนี้แสดงตัวอย่างทั่วไปเกี่ยวกับวิธีใช้สคีมา BusReservation ใช้ตัวอย่างเหล่านี้เพื่อตรวจสอบว่ามาร์กอัปมีโครงสร้างที่ถูกต้อง

การยืนยันการจองขั้นพื้นฐาน

ฝังมาร์กอัปต่อไปนี้ในอีเมลเมื่อคุณส่งการยืนยันการจอง

แอป Google จะแสดงรายละเอียดการจองในวันที่ออกเดินทาง และจะแจ้งให้ผู้ใช้ทราบถึงเวลาออกเดินทางเพื่อให้ไปถึงป้ายรถเมล์ตรงเวลา (โดยคำนึงถึงรูปแบบการเดินทาง การจราจร ฯลฯ) หากคุณระบุ URL การเช็คอินเหมือนในตัวอย่างด้านล่าง แอป Google จะแสดง URL นี้ให้ผู้ใช้เห็น 24 ชั่วโมงก่อนการเดินทางไปยังผู้ใช้

JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "BusReservation",
  "reservationNumber": "123456",
  "underName": {
    "@type": "Person",
    "name": "John Smith"
  },
  "reservationStatus": "http://schema.org/ReservationConfirmed",
  "reservationFor": {
    "@type": "BusTrip",
    "busCompany": {
      "@type": "Organization",
      "name": "Bolt NYC"
    },
    "departureBusStop": {
      "@type": "BusStop",
      "name": "Port Authority, NYC"
    },
    "departureTime": "2017-01-04T12:30:00-05:00",
    "arrivalBusStop": {
      "@type": "BusStop",
      "name": "Boston South Station"
    },
    "arrivalTime": "2017-01-04T17:10:00-05:00"
  }
}
</script>

Microdata

<div itemscope itemtype="http://schema.org/BusReservation">
  <meta itemprop="reservationNumber" content="123456"/>
  <div itemprop="underName" itemscope itemtype="http://schema.org/Person">
    <meta itemprop="name" content="John Smith"/>
  </div>
  <link itemprop="reservationStatus" href="http://schema.org/ReservationConfirmed"/>
  <div itemprop="reservationFor" itemscope itemtype="http://schema.org/BusTrip">
    <div itemprop="busCompany" itemscope itemtype="http://schema.org/Organization">
      <meta itemprop="name" content="Bolt NYC"/>
    </div>
    <div itemprop="departureBusStop" itemscope itemtype="http://schema.org/BusStop">
      <meta itemprop="name" content="Port Authority, NYC"/>
    </div>
    <meta itemprop="departureTime" content="2017-01-04T12:30:00-05:00"/>
    <div itemprop="arrivalBusStop" itemscope itemtype="http://schema.org/BusStop">
      <meta itemprop="name" content="Boston South Station"/>
    </div>
    <meta itemprop="arrivalTime" content="2017-01-04T17:10:00-05:00"/>
  </div>
</div>

บอร์ดดิ้งพาสและตั๋ว

นอกจากการยืนยันการจองแล้ว คุณยังเรียกใช้บอร์ดดิ้งพาสสำหรับบัตรยืนยันในอีเมลแยกต่างหากได้

การ์ดยืนยันไม่เพียงช่วยให้ผู้ใช้ไปถึงป้ายรถเมล์ตรงเวลาเท่านั้น แต่ยังแสดงตั๋วให้ผู้ใช้เห็นระหว่างการเดินทางอีกด้วย สำหรับการดำเนินการนี้ ฟิลด์เพิ่มเติมบางฟิลด์ต้องรวมอยู่ในมาร์กอัป หากมีช่องอื่นๆ ที่ต้องกรอกสำหรับผู้โดยสาร ให้ใส่ในช่อง additionalTicketText

สำหรับตั๋วแบบไม่จองที่นั่ง ช่องข้อมูลเหล่านี้คือ numSeats, ticketNumber, ticketToken

JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "BusReservation",
  "reservationNumber": "123456",
  "underName": {
    "@type": "Person",
    "name": "John Smith"
  },
  "reservationStatus": "http://schema.org/ReservationConfirmed",
  "reservationFor": {
    "@type": "BusTrip",
    "busCompany": "Bolt NYC",
    "departureBusStop": {
      "@type": "BusStop",
      "name": "Port Authority, NYC"
    },
    "departureTime": "2017-01-04T12:30:00-05:00",
    "arrivalBusStop": {
      "@type": "BusStop",
      "name": "Boston South Station"
    },
    "arrivalTime": "2017-01-04T17:10:00-05:00"
  },
  "reservedTicket": {
    "@type": "Ticket",
    "underName": "John Smith",
    "ticketNumber": "123XYZ",
    "ticketToken": "aztecCode:AB34",
    "additionalTicketText": "We recommend that you arrive at the station at least 30 minutes prior to your scheduled departure. Allow additional time if you need help with baggage or tickets."
  }
}
</script>

Microdata

<div itemscope itemtype="http://schema.org/BusReservation">
  <meta itemprop="reservationNumber" content="123456"/>
  <div itemprop="underName" itemscope itemtype="http://schema.org/Person">
    <meta itemprop="name" content="John Smith"/>
  </div>
  <link itemprop="reservationStatus" href="http://schema.org/ReservationConfirmed"/>
  <div itemprop="reservationFor" itemscope itemtype="http://schema.org/BusTrip">
    <meta itemprop="busCompany" content="Bolt NYC"/>
    <div itemprop="departureBusStop" itemscope itemtype="http://schema.org/BusStop">
      <meta itemprop="name" content="Port Authority, NYC"/>
    </div>
    <meta itemprop="departureTime" content="2017-01-04T12:30:00-05:00"/>
    <div itemprop="arrivalBusStop" itemscope itemtype="http://schema.org/BusStop">
      <meta itemprop="name" content="Boston South Station"/>
    </div>
    <meta itemprop="arrivalTime" content="2017-01-04T17:10:00-05:00"/>
  </div>
  <div itemprop="reservedTicket" itemscope itemtype="http://schema.org/Ticket">
    <meta itemprop="underName" content="John Smith"/>
    <meta itemprop="ticketNumber" content="123XYZ"/>
    <meta itemprop="ticketToken" content="aztecCode:AB34"/>
    <meta itemprop="additionalTicketText" content="We recommend that you arrive at the station at least 30 minutes prior to your scheduled departure. Allow additional time if you need help with baggage or tickets."/>
  </div>
</div>

สำหรับตั๋วแบบจองที่นั่ง ช่องข้อมูลเหล่านี้คือ seatNumber, seatingType, ticketNumber, ticketToken

JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "BusReservation",
  "reservationNumber": "123456",
  "underName": {
    "@type": "Person",
    "name": "John Smith"
  },
  "reservationStatus": "http://schema.org/ReservationConfirmed",
  "reservationFor": {
    "@type": "BusTrip",
    "busCompany": "Bolt NYC",
    "departureBusStop": {
      "@type": "BusStop",
      "name": "Port Authority, NYC"
    },
    "departureTime": "2017-01-04T12:30:00-05:00",
    "arrivalBusStop": {
      "@type": "BusStop",
      "name": "Boston South Station"
    },
    "arrivalTime": "2017-01-04T17:10:00-05:00"
  },
  "reservedTicket": {
    "@type": "Ticket",
    "underName": "John Smith",
    "ticketedSeat": {
      "@type": "Seat",
      "seatNumber": "27B",
      "seatingType": "Coach"
    },
    "ticketNumber": "123XYZ",
    "ticketToken": "aztecCode:AB34",
    "additionalTicketText": "We recommend that you arrive at the station at least 30 minutes prior to your scheduled departure. Allow additional time if you need help with baggage or tickets."
  }
}
</script>

Microdata

<div itemscope itemtype="http://schema.org/BusReservation">
  <meta itemprop="reservationNumber" content="123456"/>
  <div itemprop="underName" itemscope itemtype="http://schema.org/Person">
    <meta itemprop="name" content="John Smith"/>
  </div>
  <link itemprop="reservationStatus" href="http://schema.org/ReservationConfirmed"/>
  <div itemprop="reservationFor" itemscope itemtype="http://schema.org/BusTrip">
    <meta itemprop="busCompany" content="Bolt NYC"/>
    <div itemprop="departureBusStop" itemscope itemtype="http://schema.org/BusStop">
      <meta itemprop="name" content="Port Authority, NYC"/>
    </div>
    <meta itemprop="departureTime" content="2017-01-04T12:30:00-05:00"/>
    <div itemprop="arrivalBusStop" itemscope itemtype="http://schema.org/BusStop">
      <meta itemprop="name" content="Boston South Station"/>
    </div>
    <meta itemprop="arrivalTime" content="2017-01-04T17:10:00-05:00"/>
  </div>
  <div itemprop="reservedTicket" itemscope itemtype="http://schema.org/Ticket">
    <meta itemprop="underName" content="John Smith"/>
    <div itemprop="ticketedSeat" itemscope itemtype="http://schema.org/Seat">
      <meta itemprop="seatNumber" content="27B"/>
      <meta itemprop="seatingType" content="Coach"/>
    </div>
    <meta itemprop="ticketNumber" content="123XYZ"/>
    <meta itemprop="ticketToken" content="aztecCode:AB34"/>
    <meta itemprop="additionalTicketText" content="We recommend that you arrive at the station at least 30 minutes prior to your scheduled departure. Allow additional time if you need help with baggage or tickets."/>
  </div>
</div>

ตัวอย่างที่มีช่องที่รองรับทั้งหมด

ต่อไปนี้คือตัวอย่างที่มีการใส่ข้อมูลในช่องที่รองรับทั้งหมด

JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "BusReservation",
  "reservationNumber": "123456",
  "url": "http://boltbus.com/view/123456",
  "underName": {
    "@type": "Person",
    "name": "John Smith",
    "email": "john@mail.com"
  },
  "programMembership": {
    "@type": "ProgramMembership",
    "memberNumber": "12345",
    "program": "STA"
  },
  "bookingAgent": {
    "@type": "Organization",
    "name": "Bolt Bus NYC",
    "url": "http://boltbus.com/"
  },
  "bookingTime": "2013-01-14T13:05:00-05:00",
  "modifiedTime": "2013-03-14T13:05:00-05:00",
  "confirmReservationUrl": "http://boltbus.com/confirm?id=123456",
  "cancelReservationUrl": "http://boltbus.com/cancel?id=123456",
  "modifyReservationUrl": "http://boltbus.com/edit?id=123456",
  "checkinUrl": "http://boltbus.com/checkin?id=AB3XY2",
  "reservationStatus": "http://schema.org/ReservationConfirmed",
  "reservationFor": {
    "@type": "BusTrip",
    "name": "?",
    "busNumber": "63",
    "busName": "Bolt Bus NY:Boston",
    "busCompany": {
      "@type": "Organization",
      "name": "Bolt NYC"
    },
    "departureBusStop": {
      "@type": "BusStop",
      "name": "Port Authority, NYC",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "625 8th Avenue",
        "addressLocality": "New York",
        "addressRegion": "NY",
        "postalCode": "10018",
        "addressCountry": "USA"
      },
      "directions": "Bus terminals are at floors 2-4 of the Port Authority building"
    },
    "departureTime": "2017-01-04T12:30:00-05:00",
    "arrivalBusStop": {
      "@type": "BusStop",
      "name": "Boston South Station",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "Summer St.",
        "addressLocality": "Boston",
        "addressRegion": "MA",
        "postalCode": "02111",
        "addressCountry": "USA"
      },
      "directions": "Bus stops are at thewest side of the train station."
    },
    "arrivalTime": "2017-01-04T17:10:00-05:00"
  },
  "reservedTicket": {
    "@type": "Ticket",
    "ticketNumber": "123XYZ",
    "downloadUrl": "?",
    "printUrl": "?",
    "ticketToken": "qrCode:123456789",
    "additionalTicketText": "?",
    "price": "45.00",
    "priceCurrency": "USD",
    "underName": {
      "@type": "Person",
      "name": "Mary Smith"
    },
    "ticketedSeat": {
      "@type": "Seat",
      "seatingType": "Coach",
      "seatNumber": "27",
      "seatRow": "A"
    }
  }
}
</script>

Microdata

<div itemscope itemtype="http://schema.org/BusReservation">
  <meta itemprop="reservationNumber" content="123456"/>
  <link itemprop="url" href="http://boltbus.com/view/123456"/>
  <div itemprop="underName" itemscope itemtype="http://schema.org/Person">
    <meta itemprop="name" content="John Smith"/>
    <meta itemprop="email" content="john@mail.com"/>
  </div>
  <div itemprop="programMembership" itemscope itemtype="http://schema.org/ProgramMembership">
    <meta itemprop="memberNumber" content="12345"/>
    <meta itemprop="program" content="STA"/>
  </div>
  <div itemprop="bookingAgent" itemscope itemtype="http://schema.org/Organization">
    <meta itemprop="name" content="Bolt Bus NYC"/>
    <link itemprop="url" href="http://boltbus.com/"/>
  </div>
  <meta itemprop="bookingTime" content="2013-01-14T13:05:00-05:00"/>
  <meta itemprop="modifiedTime" content="2013-03-14T13:05:00-05:00"/>
  <link itemprop="confirmReservationUrl" href="http://boltbus.com/confirm?id=123456"/>
  <link itemprop="cancelReservationUrl" href="http://boltbus.com/cancel?id=123456"/>
  <link itemprop="modifyReservationUrl" href="http://boltbus.com/edit?id=123456"/>
  <link itemprop="checkinUrl" href="http://boltbus.com/checkin?id=AB3XY2"/>
  <link itemprop="reservationStatus" href="http://schema.org/ReservationConfirmed"/>
  <div itemprop="reservationFor" itemscope itemtype="http://schema.org/BusTrip">
    <meta itemprop="name" content="?"/>
    <meta itemprop="busNumber" content="63"/>
    <meta itemprop="busName" content="Bolt Bus NY:Boston"/>
    <div itemprop="busCompany" itemscope itemtype="http://schema.org/Organization">
      <meta itemprop="name" content="Bolt NYC"/>
    </div>
    <div itemprop="departureBusStop" itemscope itemtype="http://schema.org/BusStop">
      <meta itemprop="name" content="Port Authority, NYC"/>
      <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
        <meta itemprop="streetAddress" content="625 8th Avenue"/>
        <meta itemprop="addressLocality" content="New York"/>
        <meta itemprop="addressRegion" content="NY"/>
        <meta itemprop="postalCode" content="10018"/>
        <meta itemprop="addressCountry" content="USA"/>
      </div>
      <meta itemprop="directions" content="Bus terminals are at floors 2-4 of the Port Authority building"/>
    </div>
    <meta itemprop="departureTime" content="2017-01-04T12:30:00-05:00"/>
    <div itemprop="arrivalBusStop" itemscope itemtype="http://schema.org/BusStop">
      <meta itemprop="name" content="Boston South Station"/>
      <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
        <meta itemprop="streetAddress" content="Summer St."/>
        <meta itemprop="addressLocality" content="Boston"/>
        <meta itemprop="addressRegion" content="MA"/>
        <meta itemprop="postalCode" content="02111"/>
        <meta itemprop="addressCountry" content="USA"/>
      </div>
      <meta itemprop="directions" content="Bus stops are at thewest side of the train station."/>
    </div>
    <meta itemprop="arrivalTime" content="2017-01-04T17:10:00-05:00"/>
  </div>
  <div itemprop="reservedTicket" itemscope itemtype="http://schema.org/Ticket">
    <meta itemprop="ticketNumber" content="123XYZ"/>
    <meta itemprop="downloadUrl" content="?"/>
    <meta itemprop="printUrl" content="?"/>
    <meta itemprop="ticketToken" content="qrCode:123456789"/>
    <meta itemprop="additionalTicketText" content="?"/>
    <meta itemprop="price" content="45.00"/>
    <meta itemprop="priceCurrency" content="USD"/>
    <div itemprop="underName" itemscope itemtype="http://schema.org/Person">
      <meta itemprop="name" content="Mary Smith"/>
    </div>
    <div itemprop="ticketedSeat" itemscope itemtype="http://schema.org/Seat">
      <meta itemprop="seatingType" content="Coach"/>
      <meta itemprop="seatNumber" content="27"/>
      <meta itemprop="seatRow" content="A"/>
    </div>
  </div>
</div>

ทดสอบมาร์กอัปของคุณ

คุณสามารถตรวจสอบมาร์กอัปโดยใช้เครื่องมือทดสอบอีเมลมาร์กอัป วางโค้ดมาร์กอัปแล้วคลิกปุ่มตรวจสอบความถูกต้องเพื่อสแกนเนื้อหาและรับรายงานเกี่ยวกับข้อผิดพลาดที่เกิดขึ้น

ข้อมูลจำเพาะ

ตรวจสอบรายละเอียดในอีเมลเพื่อดูว่าที่พักเหล่านี้มีผลกับการจองรถโดยสารหรือไม่ การมาร์กอัปที่พักเพิ่มเติมเหล่านี้หมายความว่าคุณอนุญาตให้ Google แสดงรายละเอียดการจองรถบัสแก่ผู้ใช้ได้ดียิ่งขึ้น

พร็อพเพอร์ตี้ ประเภท คำอธิบาย
reservationNumber ข้อความ (ต้องระบุ) หมายเลขหรือรหัสของการจอง
URL URL หน้าเว็บที่สามารถดูการจองได้
underName Person หรือ Organization (ต้องระบุ) ผู้โดยสาร
underName.name ข้อความ (ต้องระบุ) ชื่อบุคคล
underName.email ข้อความ อีเมล
programMembership ProgramMembership การเป็นสมาชิกในการจองตามการสะสมไมล์ โปรแกรมสะสมคะแนนของโรงแรม และอื่นๆ มีผลกับการจอง
programMembership.memberNumber ข้อความ ตัวระบุการเป็นสมาชิก
programMembership.program ข้อความ ชื่อโปรแกรม
bookingAgent Organization หรือ Person ตัวแทนหรือเอเจนซีด้านการจอง และยังยอมรับสตริง (เช่น "") ด้วย
bookingAgent.name ข้อความ ชื่อตัวแทน/บริการ
bookingAgent.url URL เว็บไซต์ของตัวแทน/บริการ
bookingTime DateTime วันที่ทำการจอง
modifiedTime DateTime (แนะนำสำหรับการ์ดยืนยัน/คำตอบเกี่ยวกับการค้นหา) เวลาที่แก้ไขการจองครั้งล่าสุด
confirmReservationUrl URL หน้าเว็บที่สามารถยืนยันการจองได้
cancelReservationUrl URL หน้าเว็บที่ยกเลิกการจองได้
modifyReservationUrl URL (แนะนำสำหรับการ์ดยืนยัน/คำตอบเกี่ยวกับการค้นหา) หน้าเว็บที่แก้ไขการจองได้
checkinUrl URL หน้าเว็บที่ผู้โดยสารเช็คอินได้
reservationStatus ReservationStatus (ต้องระบุ) สถานะปัจจุบันของการจอง
reservationFor BusTrip (ต้องระบุ) ข้อมูลเกี่ยวกับการเดินทางด้วยรถประจำทาง
reservationFor.name ข้อความ ชื่อของ BusTrip
reservationFor.busNumber ข้อความ เช่น 101.
reservationFor.busName ข้อความ เช่น Bolt Express
reservationFor.busCompany องค์กร (ต้องระบุ) เช่น Bolt NYC. ยอมรับสตริง (เช่น "Bolt NYC") ด้วย
reservationFor.busCompany.name ข้อความ (ต้องระบุ) ชื่อขององค์กร
reservationFor.departureBusStop BusStop หรือ BusStation (ต้องระบุ) จุดออกเดินทางของรถประจำทาง
reservationFor.departureBusStop.name ข้อความ (ต้องระบุ) ชื่อของ BusStop
reservationFor.departureBusStop.address PostalAddress ที่อยู่ของป้ายรถเมล์ / สถานีต้นทาง
reservationFor.departureBusStop.address.streetAddress ข้อความ (แนะนำสำหรับการ์ดยืนยัน/คำตอบเกี่ยวกับการค้นหา) ที่อยู่ของป้ายรถเมล์ / สถานีต้นทาง
reservationFor.departureBusStop.address.addressLocality ข้อความ (แนะนำสำหรับการ์ดยืนยัน/คำตอบเกี่ยวกับการค้นหา) ย่าน (เช่น เมือง) ของป้ายรถเมล์ / สถานีต้นทาง
reservationFor.departureBusStop.address.addressRegion ข้อความ (แนะนำสำหรับการ์ดยืนยัน/คำตอบเกี่ยวกับการค้นหา) ภูมิภาค (เช่น รัฐ) ของป้ายรถเมล์ / สถานีต้นทาง
reservationFor.departureBusStop.address.postalCode ข้อความ (แนะนำสำหรับการ์ดยืนยัน/คำตอบเกี่ยวกับการค้นหา) รหัสไปรษณีย์ของป้ายรถเมล์ / สถานีต้นทาง
reservationFor.departureBusStop.address.addressCountry ข้อความหรือประเทศ (แนะนำสำหรับการ์ดยืนยัน/คำตอบเกี่ยวกับการค้นหา) ประเทศต้นทาง / ป้ายรถเมล์
reservationFor.departureBusStop.directions ข้อความ เส้นทางไปป้ายรถเมล์
reservationFor.departureTime DateTime (ต้องระบุ) เวลาออกเดินทางของรถประจำทาง
reservationFor.arrivalBusStop BusStop หรือ BusStation (ต้องระบุ) ตำแหน่งที่รถเมล์มาถึง
reservationFor.arrivalBusStop.name ข้อความ (ต้องระบุ) ชื่อของ BusStop
reservationFor.arrivalBusStop.address PostalAddress ที่อยู่ของป้ายรถเมล์ / สถานีปลายทาง
reservationFor.arrivalBusStop.address.streetAddress ข้อความ (แนะนำสำหรับการ์ดยืนยัน/คำตอบเกี่ยวกับการค้นหา) ที่อยู่ป้ายรถประจำทาง / สถานีขาเข้า
reservationFor.arrivalBusStop.address.addressLocality ข้อความ (แนะนำสำหรับการ์ดยืนยัน/คำตอบเกี่ยวกับการค้นหา) ย่าน (เช่น เมือง) ของป้ายรถเมล์ / สถานีปลายทาง
reservationFor.arrivalBusStop.address.addressRegion ข้อความ (แนะนำสำหรับการ์ดยืนยัน/คำตอบเกี่ยวกับการค้นหา) ภูมิภาค (เช่น รัฐ) ของป้ายรถเมล์ / สถานีขาเข้า
reservationFor.arrivalBusStop.address.postalCode ข้อความ (แนะนำสำหรับการ์ดยืนยัน/คำตอบเกี่ยวกับการค้นหา) รหัสไปรษณีย์ของป้ายรถเมล์ / สถานีปลายทาง
reservationFor.arrivalBusStop.address.addressCountry ข้อความหรือประเทศ (แนะนำสำหรับการ์ดยืนยัน/คำตอบเกี่ยวกับการค้นหา) ป้ายรถประจำทาง / สถานีเดินทางมาถึง
reservationFor.arrivalBusStop.directions ข้อความ เส้นทางไปป้ายรถเมล์
reservationFor.arrivalTime DateTime (ต้องระบุ) เวลาถึงรถบัส
reservedTicket ตั๋ว ข้อมูลตั๋ว
reservedTicket.ticketNumber ข้อความ หมายเลขหรือรหัสของตั๋ว
reservedTicket.downloadUrl URL .
reservedTicket.printUrl URL .
reservedTicket.ticketToken ข้อความหรือ URL หากรูปภาพบาร์โค้ดโฮสต์อยู่ในเว็บไซต์ของคุณ ค่าของช่องจะเป็น URL ของรูปภาพ หรือ URI ของบาร์โค้ดหรือคิวอาร์โค้ด เช่น "barcode128:AB34" (บาร์โค้ด ISO-15417), "qrCode:AB34" (คิวอาร์โค้ด), "aztecCode:AB34" (รหัสแอซเท็ก), "barcodeEAN:1234" (รหัส EAN) และ "barcodeUPCA:1234" (รหัส UPCA)
reservedTicket.additionalTicketText ข้อความ ข้อความอธิบายเพิ่มเติมเกี่ยวกับตั๋ว
reservedTicket.price ข้อความ ราคารวมของตั๋ว
reserveTicket.priceCurrency ข้อความ สกุลเงิน (ในรูปแบบ ISO 4217 แบบ 3 อักขระ) ของราคาตั๋ว
reservedTicket.underName Person หรือ Organization บุคคลหรือองค์กรที่ซื้อตั๋วไว้
reservedTicket.underName.name ข้อความ ชื่อบุคคล
reservedTicket.ticketedSeat ที่นั่ง ตำแหน่งของที่นั่งที่จองไว้ (เช่น 27B)
reservedTicket.ticketedSeat.seatingType ข้อความ ประเภท/คลาสของที่นั่ง
reservedTicket.ticketedSeat.seatNumber ข้อความ ตำแหน่งของที่นั่งที่จองไว้
reservedTicket.ticketedSeat.seatRow ข้อความ ตำแหน่งของแถวของที่นั่งที่จองไว้