Etkinlik Rezervasyonu

Bu türü, bir etkinlikte bir veya daha fazla konuk için rezervasyon bildirmek üzere kullanın. Biletler de beyan edilebilir.

Kullanım alanları

Aşağıdaki kullanım alanlarında, EventReservation şemasının nasıl kullanıldığına dair yaygın örnekler gösterilmektedir. İşaretlemenizin doğru şekilde yapılandırıldığından emin olmak için bu örnekleri kullanın.

Bilet içermeyen temel etkinlik hatırlatıcısı

Bir kullanıcının etkinliğe katılımını onaylayan bir e-posta gönderiyorsanız aşağıdaki biçimlendirmeyi ekleyin. Bu, e-postanızın EventReservation olarak nitelendirilmesi için gereken minimum işaretleme tutarı örneğidir.

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>

Mikro veri

<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>

Biletli ve ayrılmış koltukların olmadığı etkinlik

Biletlerle ilgili bilgi eklemek için ticketToken, ticketNumber ve numSeats alanlarını ekleyin.

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>

Mikro veri

<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>

Biletli spor veya müzik etkinliği

reservationFor türünü MusicEvent veya SportsEvent olarak ayarlayın. Etkinlik bir MusicEvent ise (ör. konser) performer.name ve performer.image özelliklerini eklemeniz gerekir. Etkinlik, iki rakip takımın veya oyuncunun yer aldığı bir SportsEvent (ör. basketbol maçı) ise iki takımı da sanatçı olarak ekleyin.

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>

Mikro veri

<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>

Biletli ve koltuk rezervasyonu olan etkinlik

Rezerve edilmiş koltuk içeren tek bir bilet için ticketToken, ticketNumber, venueSeat, venueRow ve venueSection özelliklerini ekleyin. Yalnızca koltuğun konumunu açıklamak için gereken venueSeat, venueRow ve venueSection değerlerinden birini eklemeniz gerekir.

numSeats eklemeyin.

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>

Mikro veri

<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>

Birden fazla bilet

Birden fazla bilet oluşturmak için iki seçeneğiniz vardır:

  • İlki numSeats değişikliğidir. Yani tek bir rezervasyon, numSeats kişi için biletleri temsil eder.

  • Kişi başına bir bilet (ör. barkod) istiyorsanız ve bilette her kişinin adının yer almasını istiyorsanız EventReservations değerini 1 olarak ayarlayarak birden fazla numSeats oluşturun (kişi başına bir tane). Aşağıdaki örnekte bu durum gösterilmektedir.

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>

Mikro veri

<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>

İşaretlemenizi test edin.

E-posta Biçimlendirme Test Aracı'nı kullanarak işaretlemenizi doğrulayabilirsiniz. İşaretleme kodunuzu yapıştırın ve içeriği tarayıp mevcut hatalarla ilgili bir rapor almak için Doğrula düğmesini tıklayın.

Spesifikasyon

Bu özelliklerden herhangi birinin etkinlik rezervasyonunuz için geçerli olup olmadığını görmek üzere e-postanızın ayrıntılarını inceleyin. Bu ek özellikleri işaretleyerek Google'ın, kullanıcıya etkinlik rezervasyonuyla ilgili çok daha ayrıntılı bir açıklama göstermesine izin verirsiniz.

EventReservation

Tür adı: EventReservation

Reservation'ı genişletir.

Ad Tür Açıklama
action İşlem Bu öğe üzerinde yapılabilecek bir işlem.
action.name Metin İşleme bağlı kullanıcı arayüzü öğesinde kullanıcıya gösterilen dize.
action.url URL İşlemin hedef URL'si. Açık bir işleyici alanı sağlanmazsa işlem işleyicisi, WebActionHandler URL'si olarak bu URL'yi içeren bir WebActionHandler'a genişletilir.
additionalTicketText Metin Bilet hakkında ek bilgiler.
bookingAgent Organization veya Person Rezervasyon aracısı veya acentesi. Dize de kabul eder (ör. "").
bookingAgent.image URL Kuruluşun resminin URL'si.
bookingAgent.name Metin Aracının/hizmetin adı.
bookingAgent.url URL Aracının/hizmetin web sitesi.
bookingTime DateTime Rezervasyonun yapıldığı tarih.
cancelReservationUrl URL Rezervasyonun iptal edilebileceği web sayfası.
confirmReservationUrl URL Rezervasyonun onaylanabileceği web sayfası.
modifiedTime DateTime (Onay kartları/Arama yanıtları için önerilir) Rezervasyonun en son değiştirildiği saat.
modifyReservationUrl URL (Onay kartları/arama yanıtları için önerilir) Rezervasyonun değiştirilebileceği web sayfası.
numSeats Number Koltuk sayısı.
price Metin EventReservation'ın toplam fiyatı.
priceCurrency Metin EventReservation'ın fiyatının para birimi (3 harfli ISO 4217 biçiminde).
programMembership ProgramMembership Rezervasyonda kullanılan sık uçan yolcu programı, otel bağlılık programı vb. üyelikleri.
programMembership.memberNumber Metin Üyeliğin tanımlayıcısı.
programMembership.program Metin Programın adı.
reservationFor
(Zorunlu)
Etkinlik Event veya etkinlik alt türlerinden herhangi biri (ör. BusinessEvent, ChildrenEvent, ComedyEvent, DanceEvent, EducationEvent, Festival, FoodEvent, LiteraryEvent, MovieShowing, MusicEvent, SaleEvent, SocialEvent, SportsEvent, TheaterEvent, VisualArtsEvent) kullanılabilir.
reservationFor.description Metin Etkinliğin kısa bir açıklaması.
reservationFor.doorTime DateTime Girişin başlayacağı zaman.
reservationFor.endDate DateTime Etkinliğin bitiş tarihi ve saati.
reservationFor.image URL Etkinliğin resminin URL'si.
reservationFor.location
(Gerekli)
Place Etkinliğin konumu.
reservationFor.location.address
(Zorunlu)
PostalAddress Etkinliğin gerçekleşeceği yerin adresi.
reservationFor.location.address.addressCountry
(Zorunlu)
Text veya Country Etkinliğin gerçekleştiği ülkeyi.
reservationFor.location.address.addressLocality
(Zorunlu)
Metin Etkinliğin gerçekleştiği yerin bulunduğu bölge (ör. şehir).
reservationFor.location.address.addressRegion
(Zorunlu)
Metin Etkinliğin gerçekleştiği yerin bölgesi (ör. eyalet).
reservationFor.location.address.postalCode
(Zorunlu)
Metin Etkinliğin yapıldığı yerin posta kodu.
reservationFor.location.address.streetAddress
(Zorunlu)
Metin Etkinliğin gerçekleşeceği yerin açık adresi.
reservationFor.location.name
(Zorunlu)
Metin Etkinlik konumunun adı.
reservationFor.name
(Zorunlu)
Metin Etkinliğin adı.
reservationFor.performer Person veya Organization (Onay kartları/arama yanıtları için önerilir) Etkinliğin sanatçısı. Nesne dizisi de kabul eder.
reservationFor.performer.image URL (Onay kartları/arama yanıtları için önerilir) Kişinin resminin URL'si.
reservationFor.performer.name Metin (Onay kartları/arama yanıtları için önerilir) Kişinin adı.
reservationFor.performer.url URL Kişinin URL'si.
reservationFor.startDate
(Zorunlu)
DateTime Etkinliğin başlangıç tarihi ve saati.
reservationFor.url URL Etkinliğin URL'si.
reservationNumber
(Zorunlu)
Metin Rezervasyonun numarası veya kimliği.
reservationStatus
(Zorunlu)
ReservationStatus Rezervasyonun mevcut durumu.
ticketDownloadUrl URL Biletin indirilebileceği yer.
ticketNumber Metin Biletin numarası veya kimliği.
ticketPrintUrl URL Biletin yazdırılabileceği yer.
ticketToken Metin veya URL Barkod resmi sitenizde barındırılıyorsa alanın değeri, resmin URL'si veya "barcode128:AB34" (ISO-15417 barkodları), "qrCode:AB34" (QR kodları), "aztecCode:AB34" (Aztek kodları), "barcodeEAN:1234" (EAN kodları) ve "barcodeUPCA:1234" (UPCA kodları) gibi bir barkod ya da QR URI'sidir.
underName
(Zorunlu)
Person veya Organization Bilet sahibi.
underName.email Metin E-posta adresi.
underName.name
(Zorunlu)
Metin Kişinin adı.
url URL Rezervasyonun görüntülenebileceği web sayfası.
venueRow Metin Koltuk sırası.
venueSeat Metin Koltuk numarası.
venueSection Metin Koltuk bölümü.