การจองกิจกรรม

ใช้ประเภทนี้เพื่อประกาศการจองสำหรับผู้เข้าร่วมอย่างน้อย 1 คนในงาน คุณยังประกาศตั๋วได้ด้วย

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

Use Case ต่อไปนี้แสดงตัวอย่างทั่วไปของการใช้สคีมา EventReservation ใช้ตัวอย่างเหล่านี้เพื่อให้แน่ใจว่ามาร์กอัปมีโครงสร้างที่เหมาะสม

การช่วยเตือนกิจกรรมพื้นฐานที่ไม่มีตั๋ว

หากคุณส่งอีเมลเพื่อยืนยันการเข้าร่วมกิจกรรมของผู้ใช้ ให้ใส่มาร์กอัปต่อไปนี้ นี่เป็นตัวอย่างมาร์กอัปขั้นต่ำที่จะทำให้อีเมลของคุณเป็น EventReservation

JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "EventReservation",
  "reservationNumber": "E123456789",
  "reservationStatus": "http://schema.org/Confirmed",
  "underName": {
    "@type": "Person",
    "name": "John Smith"
  },
  "reservationFor": {
    "@type": "Event",
    "name": "Foo Fighters Concert",
    "startDate": "2027-03-06T19:30:00-08:00",
    "location": {
      "@type": "Place",
      "name": "AT&T Park",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "24 Willie Mays Plaza",
        "addressLocality": "San Francisco",
        "addressRegion": "CA",
        "postalCode": "94107",
        "addressCountry": "US"
      }
    }
  }
}
</script>

Microdata

<div itemscope itemtype="http://schema.org/EventReservation">
  <meta itemprop="reservationNumber" content="E123456789"/>
  <link itemprop="reservationStatus" href="http://schema.org/Confirmed"/>
  <div itemprop="underName" itemscope itemtype="http://schema.org/Person">
    <meta itemprop="name" content="John Smith"/>
  </div>
  <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Event">
    <meta itemprop="name" content="Foo Fighters Concert"/>
    <meta itemprop="startDate" content="2027-03-06T19:30:00-08:00"/>
    <div itemprop="location" itemscope itemtype="http://schema.org/Place">
      <meta itemprop="name" content="AT&T Park"/>
      <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
        <meta itemprop="streetAddress" content="24 Willie Mays Plaza"/>
        <meta itemprop="addressLocality" content="San Francisco"/>
        <meta itemprop="addressRegion" content="CA"/>
        <meta itemprop="postalCode" content="94107"/>
        <meta itemprop="addressCountry" content="US"/>
      </div>
    </div>
  </div>
</div>

กิจกรรมที่มีตั๋วและไม่มีที่นั่งที่จองไว้

ใส่ฟิลด์ ticketToken, ticketNumber และ numSeats เพื่อเพิ่มข้อมูลเกี่ยวกับตั๋ว

JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "EventReservation",
  "reservationNumber": "E123456789",
  "reservationStatus": "http://schema.org/Confirmed",
  "underName": {
    "@type": "Person",
    "name": "John Smith"
  },
  "reservationFor": {
    "@type": "Event",
    "name": "Foo Fighters Concert",
    "performer": {
      "@type": "Organization",
      "name": "The Foo Fighters",
      "image": "http://www.amprocktv.com/wp-content/uploads/2027/01/foo-fighters-1-680x383.jpg"
    },
    "startDate": "2027-03-06T19:30:00-08:00",
    "location": {
      "@type": "Place",
      "name": "AT&T Park",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "24 Willie Mays Plaza",
        "addressLocality": "San Francisco",
        "addressRegion": "CA",
        "postalCode": "94107",
        "addressCountry": "US"
      }
    }
  },
  "ticketToken": "qrCode:AB34",
  "ticketNumber": "abc123",
  "numSeats": "1"
}
</script>

Microdata

<div itemscope itemtype="http://schema.org/EventReservation">
  <meta itemprop="reservationNumber" content="E123456789"/>
  <link itemprop="reservationStatus" href="http://schema.org/Confirmed"/>
  <div itemprop="underName" itemscope itemtype="http://schema.org/Person">
    <meta itemprop="name" content="John Smith"/>
  </div>
  <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Event">
    <meta itemprop="name" content="Foo Fighters Concert"/>
    <div itemprop="performer" itemscope itemtype="http://schema.org/Organization">
      <meta itemprop="name" content="The Foo Fighters"/>
      <link itemprop="image" href="http://www.amprocktv.com/wp-content/uploads/2027/01/foo-fighters-1-680x383.jpg"/>
    </div>
    <meta itemprop="startDate" content="2027-03-06T19:30:00-08:00"/>
    <div itemprop="location" itemscope itemtype="http://schema.org/Place">
      <meta itemprop="name" content="AT&T Park"/>
      <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
        <meta itemprop="streetAddress" content="24 Willie Mays Plaza"/>
        <meta itemprop="addressLocality" content="San Francisco"/>
        <meta itemprop="addressRegion" content="CA"/>
        <meta itemprop="postalCode" content="94107"/>
        <meta itemprop="addressCountry" content="US"/>
      </div>
    </div>
  </div>
  <meta itemprop="ticketToken" content="qrCode:AB34"/>
  <meta itemprop="ticketNumber" content="abc123"/>
  <meta itemprop="numSeats" content="1"/>
</div>

กิจกรรมกีฬาหรือดนตรีที่มีตั๋ว

ตั้งค่าประเภท reservationFor เป็น MusicEvent หรือ SportsEvent หากกิจกรรมเป็น MusicEvent (เช่น คอนเสิร์ต) คุณควรใส่ performer.name และ performer.image หากกิจกรรมเป็นSportsEvent (เช่น การแข่งขันบาสเก็ตบอล) ที่มีทีมหรือผู้เล่น 2 ทีมที่แข่งขันกัน ให้ระบุทั้ง 2 ทีมเป็นผู้แสดง

JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "EventReservation",
  "reservationNumber": "E123456789",
  "reservationStatus": "http://schema.org/Confirmed",
  "underName": {
    "@type": "Person",
    "name": "John Smith"
  },
  "reservationFor": {
    "@type": "MusicEvent",
    "name": "Foo Fighters Concert",
    "url": "http://foofighterstour.com/SFO",
    "performer": {
      "@type": "Organization",
      "name": "The Foo Fighters",
      "image": "http://www.amprocktv.com/wp-content/uploads/2027/01/foo-fighters-1-680x383.jpg"
    },
    "startDate": "2027-03-06T19:30:00-08:00",
    "endDate": "2027-03-06T23:00:00-08:00",
    "doorTime": "2027-03-06T16:30:00-08:00",
    "location": {
      "@type": "Place",
      "name": "AT&T Park",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "AT&T Park",
        "addressLocality": "San Francisco",
        "addressRegion": "CA",
        "postalCode": "94107",
        "addressCountry": "US"
      }
    }
  },
  "ticketToken": "qrCode:AB34",
  "ticketNumber": "abc123",
  "numSeats": "1"
}
</script>

Microdata

<div itemscope itemtype="http://schema.org/EventReservation">
  <meta itemprop="reservationNumber" content="E123456789"/>
  <link itemprop="reservationStatus" href="http://schema.org/Confirmed"/>
  <div itemprop="underName" itemscope itemtype="http://schema.org/Person">
    <meta itemprop="name" content="John Smith"/>
  </div>
  <div itemprop="reservationFor" itemscope itemtype="http://schema.org/MusicEvent">
    <meta itemprop="name" content="Foo Fighters Concert"/>
    <link itemprop="url" href="http://foofighterstour.com/SFO"/>
    <div itemprop="performer" itemscope itemtype="http://schema.org/Organization">
      <meta itemprop="name" content="The Foo Fighters"/>
      <link itemprop="image" href="http://www.amprocktv.com/wp-content/uploads/2027/01/foo-fighters-1-680x383.jpg"/>
    </div>
    <meta itemprop="startDate" content="2027-03-06T19:30:00-08:00"/>
    <meta itemprop="endDate" content="2027-03-06T23:00:00-08:00"/>
    <meta itemprop="doorTime" content="2027-03-06T16:30:00-08:00"/>
    <div itemprop="location" itemscope itemtype="http://schema.org/Place">
      <meta itemprop="name" content="AT&T Park"/>
      <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
        <meta itemprop="streetAddress" content="AT&T Park"/>
        <meta itemprop="addressLocality" content="San Francisco"/>
        <meta itemprop="addressRegion" content="CA"/>
        <meta itemprop="postalCode" content="94107"/>
        <meta itemprop="addressCountry" content="US"/>
      </div>
    </div>
  </div>
  <meta itemprop="ticketToken" content="qrCode:AB34"/>
  <meta itemprop="ticketNumber" content="abc123"/>
  <meta itemprop="numSeats" content="1"/>
</div>

กิจกรรมที่มีตั๋วและที่นั่งที่จองไว้

สำหรับตั๋วใบเดียวที่มีที่นั่งที่จองไว้ ให้ใส่ ticketToken, ticketNumber, venueSeat, venueRow และ venueSection คุณเพียงใส่ venueSeat, venueRow หรือ venueSection รายการใดรายการหนึ่งที่ต้องการเพื่ออธิบายตำแหน่งของที่นั่ง

ห้ามใส่ numSeats

JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "EventReservation",
  "reservationNumber": "E123456789",
  "reservationStatus": "http://schema.org/Confirmed",
  "underName": {
    "@type": "Person",
    "name": "John Smith"
  },
  "reservationFor": {
    "@type": "Event",
    "name": "Foo Fighters Concert",
    "performer": {
      "@type": "Organization",
      "name": "The Foo Fighters",
      "image": "http://www.amprocktv.com/wp-content/uploads/2027/01/foo-fighters-1-680x383.jpg"
    },
    "startDate": "2027-03-06T19:30:00-08:00",
    "location": {
      "@type": "Place",
      "name": "AT&T Park",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "24 Willie Mays Plaza",
        "addressLocality": "San Francisco",
        "addressRegion": "CA",
        "postalCode": "94107",
        "addressCountry": "US"
      }
    }
  },
  "venueSeat": "12",
  "venueRow": "A",
  "venueSection": "101",
  "ticketToken": "qrCode:AB34",
  "ticketNumber": "abc123"
}
</script>

Microdata

<div itemscope itemtype="http://schema.org/EventReservation">
  <meta itemprop="reservationNumber" content="E123456789"/>
  <link itemprop="reservationStatus" href="http://schema.org/Confirmed"/>
  <div itemprop="underName" itemscope itemtype="http://schema.org/Person">
    <meta itemprop="name" content="John Smith"/>
  </div>
  <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Event">
    <meta itemprop="name" content="Foo Fighters Concert"/>
    <div itemprop="performer" itemscope itemtype="http://schema.org/Organization">
      <meta itemprop="name" content="The Foo Fighters"/>
      <link itemprop="image" href="http://www.amprocktv.com/wp-content/uploads/2027/01/foo-fighters-1-680x383.jpg"/>
    </div>
    <meta itemprop="startDate" content="2027-03-06T19:30:00-08:00"/>
    <div itemprop="location" itemscope itemtype="http://schema.org/Place">
      <meta itemprop="name" content="AT&T Park"/>
      <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
        <meta itemprop="streetAddress" content="24 Willie Mays Plaza"/>
        <meta itemprop="addressLocality" content="San Francisco"/>
        <meta itemprop="addressRegion" content="CA"/>
        <meta itemprop="postalCode" content="94107"/>
        <meta itemprop="addressCountry" content="US"/>
      </div>
    </div>
  </div>
  <meta itemprop="venueSeat" content="12"/>
  <meta itemprop="venueRow" content="A"/>
  <meta itemprop="venueSection" content="101"/>
  <meta itemprop="ticketToken" content="qrCode:AB34"/>
  <meta itemprop="ticketNumber" content="abc123"/>
</div>

ตั๋วหลายใบ

การส่งคำขอแจ้งปัญหาหลายรายการทำได้ 2 วิธีดังนี้

  • รายการแรกคือการเปลี่ยนแปลง numSeats ซึ่งหมายความว่าการจอง 1 รายการจะแสดงตั๋วสำหรับบุคคล numSeats คน

  • หากต้องการมีตั๋ว (เช่น บาร์โค้ด) 1 ใบต่อบุคคลและมีชื่อของบุคคลแต่ละคนบนตั๋ว ให้สร้าง EventReservations หลายรายการ (1 รายการต่อบุคคล) โดยตั้งค่า numSeats เป็น 1 ตัวอย่างด้านล่างแสดงลักษณะของการดำเนินการนี้

JSON-LD

<script type="application/ld+json">
[
  {
    "@context": "http://schema.org",
    "@type": "EventReservation",
    "reservationNumber": "E123456789",
    "reservationStatus": "http://schema.org/Confirmed",
    "underName": {
      "@type": "Person",
      "name": "John Smith"
    },
    "reservationFor": {
      "@type": "Event",
      "name": "Foo Fighters Concert",
      "performer": {
        "@type": "Person",
        "name": "The Foo Fighters",
        "image": "http://www.amprocktv.com/wp-content/uploads/2027/01/foo-fighters-1-680x383.jpg"
      },
      "startDate": "2027-03-06T19:30:00-08:00",
      "location": {
        "@type": "Place",
        "name": "AT&T Park",
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "24 Willie Mays Plaza",
          "addressLocality": "San Francisco",
          "addressRegion": "CA",
          "postalCode": "94107",
          "addressCountry": "US"
        }
      }
    },
    "venueSeat": "12",
    "venueRow": "A",
    "venueSection": "101",
    "ticketToken": "qrCode:AB34",
    "ticketNumber": "abc123"
  },
  {
    "@context": "http://schema.org",
    "@type": "EventReservation",
    "reservationNumber": "E123456789",
    "reservationStatus": "http://schema.org/Confirmed",
    "underName": {
      "@type": "Person",
      "name": "Eva Green"
    },
    "reservationFor": {
      "@type": "Event",
      "name": "Foo Fighters Concert",
      "performer": {
        "@type": "Organization",
        "name": "The Foo Fighters",
        "image": "http://www.amprocktv.com/wp-content/uploads/2027/01/foo-fighters-1-680x383.jpg"
      },
      "startDate": "2027-03-06T19:30:00-08:00",
      "location": {
        "@type": "Place",
        "name": "AT&T Park",
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "24 Willie Mays Plaza",
          "addressLocality": "San Francisco",
          "addressRegion": "CA",
          "postalCode": "94107",
          "addressCountry": "US"
        }
      }
    },
    "venueSeat": "13",
    "venueRow": "A",
    "venueSection": "101",
    "ticketToken": "qrCode:AB34",
    "ticketNumber": "abc456"
  }
]
</script>

Microdata

<div itemscope itemtype="http://schema.org/EventReservation">
  <meta itemprop="reservationNumber" content="E123456789"/>
  <link itemprop="reservationStatus" href="http://schema.org/Confirmed"/>
  <div itemprop="underName" itemscope itemtype="http://schema.org/Person">
    <meta itemprop="name" content="John Smith"/>
  </div>
  <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Event">
    <meta itemprop="name" content="Foo Fighters Concert"/>
   <div itemprop="performer" itemscope itemtype="http://schema.org/Person">
      <meta itemprop="name" content="The Foo Fighters"/>
      <link itemprop="image" href="http://www.amprocktv.com/wp-content/uploads/2027/01/foo-fighters-1-680x383.jpg"/>
    </div>
    <meta itemprop="startDate" content="2027-03-06T19:30:00-08:00"/>
    <div itemprop="location" itemscope itemtype="http://schema.org/Place">
      <meta itemprop="name" content="AT&T Park"/>
      <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
        <meta itemprop="streetAddress" content="24 Willie Mays Plaza"/>
        <meta itemprop="addressLocality" content="San Francisco"/>
        <meta itemprop="addressRegion" content="CA"/>
        <meta itemprop="postalCode" content="94107"/>
        <meta itemprop="addressCountry" content="US"/>
      </div>
    </div>
  </div>
  <meta itemprop="venueSeat" content="12"/>
  <meta itemprop="venueRow" content="A"/>
  <meta itemprop="venueSection" content="101"/>
  <meta itemprop="ticketToken" content="qrCode:AB34"/>
  <meta itemprop="ticketNumber" content="abc123"/>
</div>
<div itemscope itemtype="http://schema.org/EventReservation">
  <meta itemprop="reservationNumber" content="E123456789"/>
  <link itemprop="reservationStatus" href="http://schema.org/Confirmed"/>
  <div itemprop="underName" itemscope itemtype="http://schema.org/Person">
    <meta itemprop="name" content="Eva Green"/>
  </div>
  <div itemprop="reservationFor" itemscope itemtype="http://schema.org/Event">
    <meta itemprop="name" content="Foo Fighters Concert"/>
    <div itemprop="performer" itemscope itemtype="http://schema.org/Organization">
      <meta itemprop="name" content="The Foo Fighters"/>
      <link itemprop="image" href="http://www.amprocktv.com/wp-content/uploads/2027/01/foo-fighters-1-680x383.jpg"/>
    </div>
    <meta itemprop="startDate" content="2027-03-06T19:30:00-08:00"/>
    <div itemprop="location" itemscope itemtype="http://schema.org/Place">
      <meta itemprop="name" content="AT&T Park"/>
      <div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
        <meta itemprop="streetAddress" content="24 Willie Mays Plaza"/>
        <meta itemprop="addressLocality" content="San Francisco"/>
        <meta itemprop="addressRegion" content="CA"/>
        <meta itemprop="postalCode" content="94107"/>
        <meta itemprop="addressCountry" content="US"/>
      </div>
    </div>
  </div>
  <meta itemprop="venueSeat" content="13"/>
  <meta itemprop="venueRow" content="A"/>
  <meta itemprop="venueSection" content="101"/>
  <meta itemprop="ticketToken" content="qrCode:AB34"/>
  <meta itemprop="ticketNumber" content="abc456"/>
</div>

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

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

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

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

EventReservation

ชื่อประเภท: EventReservation

ขยายการจอง

ชื่อ ประเภท คำอธิบาย
action การดำเนินการ การดำเนินการที่ทำได้กับสิ่งนั้น
action.name Text สตริงที่แสดงต่อผู้ใช้ในองค์ประกอบ UI ที่เชื่อมโยงกับการดำเนินการ
action.url URL URL เป้าหมายสําหรับการดําเนินการ หากไม่ได้ระบุฟิลด์ตัวแฮนเดิลอย่างชัดเจน ระบบจะขยายตัวแฮนเดิลการดำเนินการเป็น WebActionHandler โดยมี URL นี้เป็น URL ของ WebActionHandler
additionalTicketText Text ข้อมูลเพิ่มเติมเกี่ยวกับคำขอแจ้งปัญหา
bookingAgent Organization หรือ Person ตัวแทนการจองหรือเอเจนซี ยอมรับสตริงด้วย (เช่น "")
bookingAgent.image URL URL รูปภาพขององค์กร
bookingAgent.name Text ชื่อตัวแทน/บริการ
bookingAgent.url URL เว็บไซต์ของตัวแทน/บริการ
bookingTime DateTime วันที่ทำการจอง
cancelReservationUrl URL หน้าเว็บที่ยกเลิกการจองได้
confirmReservationUrl URL หน้าเว็บที่ยืนยันการจองได้
modifiedTime DateTime (แนะนำสำหรับการ์ดยืนยัน/คำตอบการค้นหา) เวลาที่มีการแก้ไขการจองครั้งล่าสุด
modifyReservationUrl URL (แนะนำสำหรับการ์ดการยืนยัน/คำตอบการค้นหา) หน้าเว็บที่แก้ไขการจองได้
numSeats Number จำนวนที่นั่ง
price Text ราคารวมของ EventReservation
priceCurrency Text สกุลเงิน (ในรูปแบบ ISO 4217 ที่เป็นตัวอักษร 3 ตัว) ของราคา EventReservation
programMembership ProgramMembership การเป็นสมาชิกในโปรแกรมสะสมไมล์ โปรแกรมสะสมคะแนนของโรงแรม ฯลฯ ที่ใช้กับการจอง
programMembership.memberNumber Text ตัวระบุการเป็นสมาชิก
programMembership.program Text ชื่อโปรแกรม
reservationFor
(ต้องระบุ)
เหตุการณ์ ใช้ Event หรือเหตุการณ์ย่อยประเภทใดก็ได้ ซึ่งรวมถึง BusinessEvent, ChildrenEvent, ComedyEvent, DanceEvent, EducationEvent, Festival, FoodEvent, LiteraryEvent, MovieShowing, MusicEvent, SaleEvent, SocialEvent, SportsEvent, TheaterEvent, VisualArtsEvent
reservationFor.description Text คำอธิบายสั้นๆ ของกิจกรรม
reservationFor.doorTime DateTime เวลาที่เปิดให้เข้าชม
reservationFor.endDate DateTime วันที่และเวลาสิ้นสุดของกิจกรรม
reservationFor.image URL URL ของรูปภาพกิจกรรม
reservationFor.location
(ต้องระบุ)
สถานที่ สถานที่จัดกิจกรรม
reservationFor.location.address
(ต้องระบุ)
PostalAddress ที่อยู่ของสถานที่จัดกิจกรรม
reservationFor.location.address.addressCountry
(ต้องระบุ)
Text หรือ Country ประเทศของสถานที่จัดกิจกรรม
reservationFor.location.address.addressLocality
(ต้องระบุ)
Text สถานที่ตั้ง (เช่น เมือง) ของสถานที่จัดกิจกรรม
reservationFor.location.address.addressRegion
(ต้องระบุ)
Text ภูมิภาค (เช่น รัฐ) ของสถานที่จัดกิจกรรม
reservationFor.location.address.postalCode
(ต้องระบุ)
Text รหัสไปรษณีย์ของสถานที่จัดกิจกรรม
reservationFor.location.address.streetAddress
(ต้องระบุ)
Text ที่อยู่ของสถานที่จัดกิจกรรม
reservationFor.location.name
(ต้องระบุ)
Text ชื่อสถานที่จัดกิจกรรม
reservationFor.name
(ต้องระบุ)
Text ชื่อเหตุการณ์
reservationFor.performer Person หรือ Organization (แนะนำสำหรับการ์ดการยืนยัน/คำตอบการค้นหา) ศิลปินที่แสดงในกิจกรรม นอกจากนี้ยังยอมรับอาร์เรย์ของออบเจ็กต์ด้วย
reservationFor.performer.image URL (แนะนำสำหรับการ์ดการยืนยัน/คำตอบการค้นหา) URL ของรูปภาพบุคคล
reservationFor.performer.name Text (แนะนำสำหรับการ์ดการยืนยัน/คำตอบการค้นหา) ชื่อของบุคคล
reservationFor.performer.url URL URL ของบุคคล
reservationFor.startDate
(ต้องระบุ)
DateTime วันที่และเวลาเริ่มต้นของกิจกรรม
reservationFor.url URL URL ของกิจกรรม
reservationNumber
(ต้องระบุ)
Text หมายเลขหรือรหัสการจอง
reservationStatus
(ต้องระบุ)
ReservationStatus สถานะปัจจุบันของการจอง
ticketDownloadUrl URL ตำแหน่งที่ดาวน์โหลดตั๋วได้
ticketNumber Text หมายเลขหรือรหัสของตั๋ว
ticketPrintUrl URL สถานที่พิมพ์ตั๋ว
ticketToken ข้อความหรือ URL หากรูปภาพบาร์โค้ดโฮสต์อยู่ในเว็บไซต์ ค่าของช่องคือ URL ของรูปภาพ หรือ URI ของบาร์โค้ดหรือคิวอาร์โค้ด เช่น "barcode128:AB34" (บาร์โค้ด ISO-15417), "qrCode:AB34" (คิวอาร์โค้ด), "aztecCode:AB34" (โค้ด Aztec), "barcodeEAN:1234" (โค้ด EAN) และ "barcodeUPCA:1234" (โค้ด UPCA)
underName
(ต้องระบุ)
Person หรือ Organization ผู้ถือตั๋ว
underName.email Text อีเมล
underName.name
(ต้องระบุ)
Text ชื่อของบุคคล
url URL หน้าเว็บที่แสดงการจอง
venueRow Text แถวของที่นั่ง
venueSeat Text หมายเลขที่นั่ง
venueSection Text ส่วนที่นั่ง