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

Use Case

กรณีการใช้งานต่อไปนี้แสดงตัวอย่างที่พบบ่อยเกี่ยวกับวิธีใช้สคีมา 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 แสดงการจองการจองรถประจําทางต่อผู้ใช้มากขึ้น

พร็อพเพอร์ตี้ ประเภท คำอธิบาย
หมายเลขการจอง ข้อความ (ต้องระบุ) จํานวนหรือรหัสของการจอง
url URL หน้าเว็บที่สามารถดูการจองได้
ใต้ชื่อ ผู้คนหรือองค์กร (จําเป็น) ผู้โดยสาร
underName.ชื่อ ข้อความ (จําเป็น) ชื่อบุคคล
underName.อีเมล ข้อความ อีเมล
การเป็นสมาชิกของโปรแกรม การเป็นสมาชิกโปรแกรม การเป็นสมาชิกในใบปลิว โปรแกรมสะสมคะแนนของโรงแรม ฯลฯ ในการจอง
programmember.memberNumber ข้อความ ตัวระบุของการเป็นสมาชิก
programMembership. ข้อความ ชื่อโปรแกรม
ตัวแทนการจอง องค์กรหรือบุคคล ตัวแทนหรือเอเจนซีที่จอง ยอมรับสตริงด้วย (เช่น "")
ชื่อ bookingAgent. ข้อความ ชื่อของตัวแทน/บริการ
bookingAgent. URL URL เว็บไซต์ของตัวแทน/บริการ
เวลาจอง DateTime วันที่ที่จอง
เวลาแก้ไข DateTime (แนะนําสําหรับการ์ดยืนยัน/คําตอบในการค้นหา) เวลาที่แก้ไขการจองครั้งล่าสุด
ยืนยัน URL การจอง URL หน้าเว็บที่สามารถยืนยันการจองได้
ยกเลิก URL การจอง URL หน้าเว็บที่ยกเลิกการจองได้
แก้ไข URL การจอง URL (แนะนําสําหรับการ์ดยืนยัน/คําตอบในการค้นหา) หน้าเว็บที่แก้ไขการจองได้
ตรวจสอบ URL URL หน้าเว็บที่ผู้โดยสารสามารถเช็คอินได้
สถานะการจอง สถานะการจอง (ต้องระบุ) สถานะปัจจุบันของการจอง
จองสําหรับ รถบัส (จําเป็น) ข้อมูลเกี่ยวกับการเดินทางด้วยรถบัส
servingFor.name ข้อความ ชื่อ BusTrip
servingFor.busNumber ข้อความ เช่น 101
servingFor.busName ข้อความ เช่น Bolt Express
servingFor.busCompany องค์กร (จําเป็น) เช่น Bolt NYC ยอมรับสตริงด้วย (เช่น "Bolt NYC")
ชื่อ servingFor.busCompany. ข้อความ (จําเป็น) ชื่อองค์กร
servingFor.เวลาออกเดินทางBusStop BusStop หรือ BusStation (จําเป็น) ต้นทางของรถประจําทาง
ชื่อ servingFor.เวลาออกเดินทางBusStop. ข้อความ (ต้องระบุ) ชื่อ BusStop
ที่อยู่ servingFor.เวลาออกเดินทางBusStop. ที่อยู่ทางไปรษณีย์ ที่อยู่ของป้ายรถประจําทาง / สถานีต้นทาง
servingFor.เวลาออกเดินทางBusStop.address.streetAddress ข้อความ (แนะนําสําหรับการ์ดยืนยัน/คําตอบในการค้นหา) ที่อยู่ของป้ายรถประจําทาง / สถานีต้นทาง
servingFor.เวลาออกเดินทางBusStop.address.addressLocality ข้อความ (แนะนําสําหรับการ์ดยืนยัน/คําตอบการค้นหา) ย่าน (เช่น เมือง) ของป้ายรถประจําทาง / สถานีต้นทาง
servingFor.เวลาออกเดินทางBusStop.address.ที่อยู่ภูมิภาค ข้อความ (แนะนําสําหรับการ์ดยืนยัน/คําตอบในการค้นหา) ภูมิภาค (เช่น รัฐ) ของป้าย / สถานีรถประจําทางขาออก
servingFor.เวลาออกเดินทางBusStop.address.postalCode ข้อความ (แนะนําสําหรับการ์ดยืนยัน/คําตอบในการค้นหา) รหัสไปรษณีย์ของป้ายรถประจําทาง / สถานีต้นทาง
servingFor.เวลาออกเดินทางBusStop.address.ที่อยู่ประเทศ ข้อความหรือประเทศ (แนะนําสําหรับการ์ดยืนยัน/คําตอบในการค้นหา) ป้าย/สถานีรถประจําทางขาออก
เส้นทาง servingFor.เวลาออกเดินทางBusStop. ข้อความ เส้นทางไปป้ายรถประจําทาง
servingFor.เวลาออกเดินทาง DateTime (จําเป็น) เวลาออกเดินทางของรถประจําทาง
servingFor.arrivalBusStop BusStop หรือ BusStation (ต้องระบุ) รถประจําทางมาถึง
servingFor.arrivalBusStop. ชื่อ ข้อความ (ต้องระบุ) ชื่อ BusStop
ที่อยู่ servingFor.arrivalBusStop. ที่อยู่ทางไปรษณีย์ ที่อยู่ของป้ายรถประจําทาง / สถานีปลายทาง
servingFor.arrivalBusStop.address.streetAddress ข้อความ (แนะนําสําหรับบัตรยืนยัน/คําตอบในการค้นหา) ที่อยู่ป้ายรถเมล์/สถานีปลายทาง
servingFor.arrivalBusStop.address.addressLocality ข้อความ (แนะนําสําหรับการ์ดยืนยัน/คําตอบการค้นหา) ย่าน (เช่น เมือง) ของป้ายรถประจําทาง/สถานีปลายทาง
servingFor.arrivalBusStop.address.ที่อยู่ภูมิภาค ข้อความ (แนะนําสําหรับการ์ดยืนยัน/คําตอบในการค้นหา) ภูมิภาค (เช่น รัฐ) ของป้ายรถประจําทาง/สถานีปลายทาง
servingFor.arrivalBusStop.address.postalCode ข้อความ (แนะนําสําหรับการ์ดยืนยัน/คําตอบในการค้นหา) รหัสไปรษณีย์ของป้ายรถประจําทาง / สถานีปลายทาง
servingFor.arrivalBusStop.address.ที่อยู่ประเทศ ข้อความหรือประเทศ (แนะนําสําหรับการ์ดยืนยัน/คําตอบในการค้นหา) ป้าย / สถานีรถประจําทางขาเข้า
servingFor.arrivalBusStop.เส้นทาง ข้อความ เส้นทางไปป้ายรถประจําทาง
servingFor.arrivalTime DateTime (จําเป็น) เวลาถึงของรถประจําทาง
จองไว้ ตั๋ว ข้อมูลตั๋ว
reserveTicket. TicketNumber ข้อความ หมายเลขหรือรหัสของตั๋ว
reserveTicket.downloadUrl URL .
reserveTicket.printUrl URL .
reserveTicket. TicketToken ข้อความหรือ URL หากรูปภาพบาร์โค้ดโฮสต์บนเว็บไซต์ของคุณ ค่าของช่องจะเป็น URL ของรูปภาพ หรือบาร์โค้ดหรือ URI แบบคิวอาร์ เช่น "barcode128:AB34" (ISO-15417บาร์โค้ด) "qrCode:AB34" (คิวอาร์โค้ด), "aztecCode:AB34" (รหัส Aztec), "codecodeEAN:1234"UPC (AN:1234"UPC(AN)1234"UPC(A.1:3)"
reserveTicket.additionalTicketText ข้อความ ข้อความอธิบายเพิ่มเติมเกี่ยวกับตั๋ว
ราคา reserveTicket ข้อความ ราคารวมของตั๋ว
reserveTicket.priceCurrency ข้อความ สกุลเงิน (ในรูปแบบ ISO 4217 แบบ 3 ตัวอักษร) ของราคาตั๋ว
reserveTicket.underName ผู้คนหรือองค์กร บุคคลหรือองค์กรที่จําหน่ายตั๋ว
reservingTicket.underName.ชื่อ ข้อความ ชื่อบุคคล
reserveTicket. TicketedSeat ที่นั่ง ตําแหน่งของที่นั่งที่จองไว้ (เช่น 2.7 หมื่นล้าน)
reserveTicket.TicketedSeat.seatingType ข้อความ ประเภท/ประเภทที่นั่ง
reserveTicket.TicketedSeat.seatNumber ข้อความ ตําแหน่งของที่นั่งที่จองไว้
reserveTicket.TicketedSeat.seatRow ข้อความ ตําแหน่งแถวของที่นั่งที่จองไว้