Bir etkinlik için bir veya daha fazla davetli için rezervasyon tanımlamak üzere bu türü kullanın. Biletler de beyan edilebilir.
Kullanım alanları
Aşağıdaki kullanım alanları, EventReservation
şemasının nasıl kullanıldığına dair yaygın örnekleri gösterir. İşaretlemenizin doğru bir şekilde yapılandırıldığından emin olmak için bu örnekleri kullanın.
Biletsiz 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 işaretlemeyi ekleyin. Bu, e-postanızı EventReservation
olarak niteleyecek minimum işaretleme miktarının bir ö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 etkinlik ve rezerve edilmiş oturma alanı yok
Biletler hakkında 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. bir konser) performer.name
ve performer.image
içermelidir. Etkinlik, yarışan iki takımın olduğu bir SportsEvent
ise (ör. basketbol maçı) veya oyuncu iki takım oyuncuları arasındaysa.
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 etkinlik ve ayrılmış oturma alanı
Rezerve edilmiş koltuklu tek bilet için ticketToken
, ticketNumber
, venueSeat
, venueRow
ve venueSection
dahil edilir.
Koltuk konumunu tanımlamak için yalnızca venueSeat
, venueRow
ve venueSection
özelliklerinden 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 çok bilet
Birden fazla bilet için iki seçenek vardır:
İlki
numSeats
değişikliği. Bu, tek bir rezervasyonunnumSeats
kişi için biletleri temsil edeceği anlamına gelir.Her birey için bir bilet (yani barkod) olmasını istiyorsanız ve biletteki her birey için ayrı adlar olmasını istiyorsanız
numSeats
öğesini 1 olarak ayarlayıp birden fazlaEventReservations
(tek tek) oluşturun. Aşağıdaki örnekte bunun nasıl göründüğü 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 taramak ve mevcut hatalarla ilgili bir 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 için e-postanızın ayrıntılarını inceleyin. Bu ek özellikleri işaretleyerek Google'ın, kullanıcıya etkinlik rezervasyonuyla ilgili çok daha kapsamlı bir açıklama göstermesine izin vermiş olursunuz.
EventReservation
Tür adı: EventReservation
Rezervasyonu Uzatır
Ad | Tür | Açıklama |
---|---|---|
işlem | İşlem | Bu konuda 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şleyici, bu URL'nin WebActionHandler URL'si olacak şekilde bir WebActionHandler haline genişletilir. |
additionalTicketText | Metin | Biletle ilgili ek bilgiler. |
bookingAgent | Organization veya Person | Rezervasyon acentesi veya acente. Dize kabul eder (ör. ""). |
bookingAgent.image | URL | Kuruluşa ait resmin URL'si. |
bookingAgent.name | Metin | Temsilcinin/hizmetin adı. |
bookingAgent.url | URL | Temsilcinin/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 zaman. |
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 fiyatının para birimi (3 harfli ISO 4217 biçiminde). |
programMembership | ProgramMembership | Rezervasyona uygulanan sık uçan yolcu programı, otel bağlılık programı vb. üyelikler. |
programMembership.memberNumber | Metin | Üyeliğin tanımlayıcısı. |
programMembership.program | Metin | Programın adı. |
reservationFor (Zorunlu) |
Etkinlik | Etkinlik veya BusinessEvent, ChildrenEvent, ComedyEvent, DansEtkinliği, EğitimEtkinliği, Festival, Yemek Etkinliği, EdebiyatEtkinlik, MovieFilm, MusicEvent, SaleEvent, SosyalEtkinlik, SportsEvent, TheaterEvent, VisualArtsEvent. dahil olmak üzere etkinlik alt türlerinden herhangi birini kullanabilir. |
reservationFor.description | Metin | Etkinliğin kısa bir açıklaması. |
reservationFor.doorTime | DateTime | Girişin başlayacağı saat. |
reservationFor.endDate | DateTime | Etkinliğin bitiş tarihi ve saati. |
reservationFor.image | URL | Etkinlik resminin URL'si. |
ReserveFor.location (Zorunlu) |
Yer | Etkinliğin konumu. |
ReserveFor.location.address (Zorunlu) |
PostalAddress | Etkinliğin konumunun adresi. |
ReserveFor.location.address.addressCountry (Zorunlu) |
Text veya Ülke | Etkinliğin düzenlendiği ülke. |
ReserveFor.location.address.addressLocality (Zorunlu) |
Metin | Etkinlik konumunun bulunduğu yer (ör. şehir). |
ReserveFor.location.address.addressRegion (Zorunlu) |
Metin | Etkinliğin gerçekleştiği bölge (ör. Eyalet). |
ReserveFor.location.address.postalCode (Zorunlu) |
Metin | Etkinlik konumunun posta kodu. |
ReserveFor.location.address.streetAddress (Zorunlu) |
Metin | Etkinlik konumunun açık adresi. |
ReserveFor.location.name (Zorunlu) |
Metin | Etkinlik konumunun adı. |
ReserveFor.name (Zorunlu) |
Metin | Etkinliğin adı. |
reservationFor.performer | Person veya Organization | (Onay Kartları/Arama Yanıtları için önerilir) Etkinliği gerçekleştiren kullanıcı. Ayrıca bir dizi nesne kabul eder. |
reservationFor.performer.image | URL | (Onay Kartları/Arama Yanıtları için önerilir) Kişiye ait bir resmin 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. |
ReserveFor.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 yerler. |
ticketToken | Metin veya URL | Barkod resmi sitenizde barındırılıyorsa alanın değeri resmin URL'si veya barkod ya da QR URI'sidir (ör. "barcode128:AB34"). (ISO-15417 barkodları), "qrCode:AB34" (QR kodları), "aztecCode:AB34" (Aztek kodları), "barcodeEAN:1234" (EAN kodları) ve "barcodeUPCA:1234" (UPCA kodları). |
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ü. |