Etkinlik Rezervasyonu

Bir etkinlikte bir veya daha fazla davetli için rezervasyon bildirmek üzere bu türü kullanın. Biletler de bildirilebilir.

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 yapılandırıldığından emin olmak için bu örnekleri kullanın.

Biletsiz temel etkinlik hatırlatıcısı

Bir etkinliğe kullanıcının katılımını onaylayan bir e-posta gönderiyorsanız aşağıdaki işaretlemeyi ekleyin. Bu, e-posta adresinizi EventReservation olarak nitelendirecek minimum düzeyde işaretlemeye örnektir.

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>

Bilet bulunan ve rezervasyon yapılmayan 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 etkinliklerini eklemeniz gerekir. Etkinlik bir SportsEvent ise (ör. basket topu), rakip iki takım veya oyuncuları performans olarak iki takım içerir.

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>

Bilet ve rezervasyon imkanı bulunan etkinlik

Rezervasyonu yapılan tek kişilik bilet için ticketToken, ticketNumber, venueSeat, venueRow ve venueSection ekleyin. Koltuğun konumunu açıklamak için yalnızca venueSeat, venueRow ve venueSection arasından gerekli olanları 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 çok bilet

Birden çok bilet oluşturmak için iki seçenek vardır:

  • Birincisi, numSeats. değişiklik. Bu durum, tek bir rezervasyonun numSeats kişi için bileti temsil edeceği anlamına gelir.

  • Kişi başına bir bilet (ör. barkod) edinmek ve biletteki her bir kişinin adını ayrı ayrı belirlemek istiyorsanız numSeats alanı 1 olacak şekilde birden fazla EventReservations (bireysel olarak bir adet) oluşturun. Aşağıdaki örnekte bu örnek 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.

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

Spesifikasyon

Bu tesislerden herhangi birinin etkinlik rezervasyonunuz için geçerli olup olmadığını öğrenmek amacıyla e-postanızın ayrıntılarını inceleyin. Bu ek özellikleri işaretleyerek Google'ın etkinlik rezervasyonunu kullanıcıya çok daha zengin bir açıklama göstermesine izin verirsiniz.

Etkinlik Rezervasyonu

Tür adı: EventReservation

Rezervasyon'u genişletir

Ad Tür Açıklama
işlem İşlem Bu konuda uygulanabilecek adımlar.
action.ad Text İşleme bağlı olarak 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şleyici, WebActionHandler URL'si olarak bu URL'yle bir WebActionHandler uzantısına genişletilir.
ekTicketText Text Bilet hakkında ek bilgiler.
bookingAgent Kuruluş veya Kişi Rezervasyon temsilcisi veya acentesi. Bir dizeyi de kabul eder (ör. "").
rezervasyonTemsilcisi.resim URL Kuruluş resminin URL'si.
rezervasyonAgent.name Text Temsilcinin/hizmetin adı.
rezervasyonAgent.url URL Temsilcinin/hizmetin web sitesi.
rezervasyon süresi DateTime Rezervasyonun yapıldığı tarih.
iptalRezervasyon URL'si URL Rezervasyonun iptal edilebileceği web sayfası.
onay Rezervasyonu URL'si URL Rezervasyonun onaylanabileceği web sayfası.
değiştirilme Zamanı DateTime (Onay Kartları/Arama Yanıtları için önerilir) Rezervasyonun en son değiştirildiği saat.
Değişiklik Rezervasyonu URL'si URL (Onay Kartları/Arama Yanıtları için önerilir) Rezervasyonun değiştirilebileceği web sayfası.
Koltuk Sayısı Number Lisans sayısı.
price Text EventReservation'ın toplam fiyatı.
priceCurrency Text EventReservation fiyatının para birimi (3 harfli ISO 4217 biçiminde).
programÜyeliği ProgramÜyeliği Rezervasyona uygulanan sık uçan yolcu programı, otel bağlılık programı vb. tüm üyelikler.
programmembership.üyeNumarası Text Üyeliğin tanımlayıcısı.
programmembership.program Text Programın adı.
rezervasyon
(Zorunlu)
Etkinlik Event'i veya BusinessEvent, ChildrenEvent, ComedyEvent, DanceEvent, EducationEvent, Festival, FoodEvent, LiteraryEvent, MoviesMovie, MusicEvent, SaleEvent, SocialEvent, SportsEvent, TheaterEvent, VisualArtsEvent gibi herhangi bir etkinlik alt türünü kullanabilir.
Rezervasyon amaçlı.description Text Etkinliğin kısa bir açıklaması.
rezervasyonFor.kapı Zamanı DateTime Giriş saati başlar.
Rezervasyonu için.endDate DateTime Etkinliğin bitiş tarihi ve saati.
rezervasyonFor.resim URL Etkinlik resminin URL'si.
rezervasyonFor.location
(Gerekli)
Yer Etkinliğin konumu.
reviewFor.location.adres
(Gerekli)
Posta Adresi Etkinliğin konumu.
reviewFor.location.address.adresÜlke
(Gerekli)
Metin veya Ülke Etkinlik konumunun ülkesi.
reviewFor.location.address.adresYerelliği
(Gerekli)
Text Etkinlik yapılan yerin bulunduğu yer (ör. şehir).
reviewFor.location.address.adresBölgesi
(Gerekli)
Text Etkinlik konumunun bulunduğu bölge (ör. Eyalet).
reviewFor.location.address.postalCode
(Gerekli)
Text Etkinlik konumunun posta kodu.
rezervasyonFor.location.adres.sokakAdresi
(Gerekli)
Text Etkinlik konumunun açık adresi.
rezervasyonFor.location.adı
(Gerekli)
Text Etkinliğin konumu.
reviewFor.name
(Gerekli)
Text Etkinliğin adı.
Rezervasyon için:performans gösteren Kişi veya Kuruluş (Onay Kartları/Arama Yanıtları için önerilir) Etkinliği gerçekleştiren. Ayrıca bir nesne dizisi kabul edilir.
reviewFor.Performer.Resim URL (Kişiye ait bir görüntünün URL'leri/Arama Yanıtları için önerilir) URL'si.
rezervasyonFor.performanser.adı Text (Onay Kartları/Arama Yanıtları için önerilir) Kişinin adı.
reviewFor.performanceer.url URL Kişinin URL'si.
rezervasyonFor.startDate
(Gerekli)
DateTime Etkinliğin başlangıç tarihi ve saati.
rezervasyonFor.url URL Etkinliğin URL'si.
rezervasyon numarası
(Gerekli)
Text Rezervasyonun numarası veya kimliği.
rezervasyon durumu
(Gerekli)
Rezervasyon Durumu Rezervasyonun mevcut durumu.
ticketDownloadUrl URL Biletin indirilebileceği yerdir.
ticketNumber Text Biletin numarası veya kimliği.
ticketPrintUrl URL Biletin yazdırılabileceği yerler.
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" (Aztec kodları), "barcodeEAN:1234") barkodu veya QR URI'sıdır.
underName
(Gerekli)
Kişi veya Kuruluş Bilet sahibi.
underName.e-posta Text E-posta adresi.
underName.ad
(Gerekli)
Text Kişinin adı.
url URL Rezervasyonun görüntülenebileceği web sayfası.
yerSatırı Text Koltuk sırası.
yer: Text Koltuk numarası.
yerBölümü Text Koltuğun bölümü.