Kullanım alanları
Aşağıdaki kullanım alanlarında, RentalCarReservation ş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.
Temel rezervasyon onayı
Araç kiralama rezervasyonu onayı gönderirken aşağıdaki işaretlemeyi e-postanıza yerleştirin.
JSON-LD
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "RentalCarReservation",
"reservationNumber": "546323",
"reservationStatus": "http://schema.org/Confirmed",
"underName": {
"@type": "Person",
"name": "John Smith"
},
"reservationFor": {
"@type": "RentalCar",
"name": "Economy Class Car",
"model": "Civic",
"brand": {
"@type": "Brand",
"name": "Honda"
},
"rentalCompany": {
"@type": "Organization",
"name": "Hertz"
}
},
"pickupLocation": {
"@type": "Place",
"name": "Hertz San Diego Airport",
"address": {
"@type": "PostalAddress",
"streetAddress": "1500 Orange Avenue",
"addressLocality": "San Diego",
"addressRegion": "CA",
"postalCode": "94043",
"addressCountry": "US"
}
},
"pickupTime": "2027-08-05T16:00:00-07:00",
"dropoffLocation": {
"@type": "Place",
"name": "Hertz LAX",
"address": {
"@type": "PostalAddress",
"streetAddress": "1234 First Street",
"addressLocality": "Los Angeles",
"addressRegion": "CA",
"postalCode": "94043",
"addressCountry": "US"
}
},
"potentialAction": {
"@type": "ConfirmAction",
"target": "http://cheapcar.com/confirm?id=546323"
},
"dropoffTime": "2027-08-06T20:00:00-07:00"
}
</script>
Mikro veri
<div itemscope itemtype="http://schema.org/RentalCarReservation">
<meta itemprop="reservationNumber" content="546323"/>
<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/RentalCar">
<meta itemprop="name" content="Economy Class Car"/>
<meta itemprop="model" content="Civic"/>
<div itemprop="brand" itemscope itemtype="http://schema.org/Brand">
<meta itemprop="name" content="Honda"/>
</div>
<div itemprop="rentalCompany" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Hertz"/>
</div>
</div>
<div itemprop="pickupLocation" itemscope itemtype="http://schema.org/Place">
<meta itemprop="name" content="Hertz San Diego Airport"/>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<meta itemprop="streetAddress" content="1500 Orange Avenue"/>
<meta itemprop="addressLocality" content="San Diego"/>
<meta itemprop="addressRegion" content="CA"/>
<meta itemprop="postalCode" content="94043"/>
<meta itemprop="addressCountry" content="US"/>
</div>
</div>
<meta itemprop="pickupTime" content="2027-08-05T16:00:00-07:00"/>
<div itemprop="dropoffLocation" itemscope itemtype="http://schema.org/Place">
<meta itemprop="name" content="Hertz LAX"/>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<meta itemprop="streetAddress" content="1234 First Street"/>
<meta itemprop="addressLocality" content="Los Angeles"/>
<meta itemprop="addressRegion" content="CA"/>
<meta itemprop="postalCode" content="94043"/>
<meta itemprop="addressCountry" content="US"/>
</div>
</div>
<meta itemprop="dropoffTime" content="2027-08-06T20:00:00-07:00"/>
<div itemprop="potentialAction" itemscope itemtype="http://schema.org/ConfirmAction">
<link itemprop="target" href="http://cheapcar.com/confirm?id=546323"/>
</div>
</div>
Desteklenen tüm alanları içeren örnek
Referans olarak, desteklenen tüm alanların doldurulduğu bir örneği aşağıda bulabilirsiniz:
JSON-LD
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "RentalCarReservation",
"reservationNumber": "546323",
"reservationStatus": "http://schema.org/Confirmed",
"url": "http://carrentals.com/view/546323",
"underName": {
"@type": "Person",
"name": "John Smith",
"email": "john@mail.com"
},
"programMembership": {
"@type": "ProgramMembership",
"memberNumber": "1234567",
"program": "AAA"
},
"bookingAgent": {
"@type": "Organization",
"name": "Car Rentals Internationaly",
"url": "http://carrentals.com/"
},
"bookingTime": "2027-01-14T13:05:00-05:00",
"modifiedTime": "2027-03-14T13:05:00-05:00",
"confirmReservationUrl": "http://carrentals.com/confirm?id=546323",
"cancelReservationUrl": "http://carrentals.com/cancel?id=546323",
"checkinUrl": "http://carrentals.com/checkin?id=546323",
"modifyReservationUrl": "http://carrentals.com/edit?id=546323",
"potentialAction": [
{
"@type": "ConfirmAction",
"target": "http://carrentals.com/confirm?id=546323"
},
{
"@type": "CancelAction",
"target": "http://carrentals.com/cancel?id=546323"
},
{
"@type": "EditAction",
"target": "http://carrentals.com/edit?id=546323"
},
{
"@type": "CheckInAction",
"target": "http://carrentals.com/checkin?id=546323"
}
],
"reservationFor": {
"@type": "RentalCar",
"name": "Economy Class Car",
"model": "Civic",
"brand": {
"@type": "Brand",
"name": "Honda"
},
"description": "Sedan 4 Door, 5 Seatbelts, Automatic transmission",
"rentalCompany": {
"@type": "Organization",
"name": "Hertz"
}
},
"pickupLocation": {
"@type": "Place",
"name": "Hertz San Diego Airport",
"address": {
"@type": "PostalAddress",
"streetAddress": "1500 Orange Avenue",
"addressLocality": "San Diego",
"addressRegion": "CA",
"postalCode": "94043",
"addressCountry": "US"
},
"telephone": "+1-800-123-4567"
},
"pickupTime": "2027-08-05T16:00:00-07:00",
"dropoffLocation": {
"@type": "Place",
"name": "Hertz LAX",
"address": {
"@type": "PostalAddress",
"streetAddress": "1234 First Street",
"addressLocality": "Los Angeles",
"addressRegion": "CA",
"postalCode": "94043",
"addressCountry": "US"
},
"telephone": "+1-800-123-4567"
},
"dropoffTime": "2027-08-06T20:00:00-07:00",
"price": "119.00",
"priceCurrency": "USD"
}
</script>
Mikro veri
<div itemscope itemtype="http://schema.org/RentalCarReservation">
<meta itemprop="reservationNumber" content="546323"/>
<link itemprop="reservationStatus" href="http://schema.org/Confirmed"/>
<link itemprop="url" href="http://carrentals.com/view/546323"/>
<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="1234567"/>
<meta itemprop="program" content="AAA"/>
</div>
<div itemprop="bookingAgent" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Car Rentals Internationaly"/>
<link itemprop="url" href="http://carrentals.com/"/>
</div>
<meta itemprop="bookingTime" content="2027-01-14T13:05:00-05:00"/>
<meta itemprop="modifiedTime" content="2027-03-14T13:05:00-05:00"/>
<link itemprop="confirmReservationUrl" href="http://carrentals.com/confirm?id=546323"/>
<link itemprop="cancelReservationUrl" href="http://carrentals.com/cancel?id=546323"/>
<link itemprop="modifyReservationUrl" href="http://carrentals.com/edit?id=546323"/>
<link itemprop="checkinUrl" href="http://carrentals.com/checkin?id=546323"/>
<div itemprop="potentialAction" itemscope itemtype="http://schema.org/ConfirmAction">
<link itemprop="target" href="http://carrentals.com/confirm?id=546323"/>
</div>
<div itemprop="potentialAction" itemscope itemtype="http://schema.org/CancelAction">
<link itemprop="target" href="http://carrentals.com/cancel?id=546323"/>
</div>
<div itemprop="potentialAction" itemscope itemtype="http://schema.org/EditAction">
<link itemprop="target" href="http://carrentals.com/edit?id=546323"/>
</div>
<div itemprop="potentialAction" itemscope itemtype="http://schema.org/CheckInAction">
<link itemprop="target" href="http://carrentals.com/checkin?id=546323"/>
</div>
<div itemprop="reservationFor" itemscope itemtype="http://schema.org/RentalCar">
<meta itemprop="name" content="Economy Class Car"/>
<meta itemprop="model" content="Civic"/>
<div itemprop="brand" itemscope itemtype="http://schema.org/Brand">
<meta itemprop="name" content="Honda"/>
</div>
<meta itemprop="description" content="Sedan 4 Door, 5 Seatbelts, Automatic transmission"/>
<div itemprop="rentalCompany" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Hertz"/>
</div>
</div>
<div itemprop="pickupLocation" itemscope itemtype="http://schema.org/Place">
<meta itemprop="name" content="Hertz San Diego Airport"/>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<meta itemprop="streetAddress" content="1500 Orange Avenue"/>
<meta itemprop="addressLocality" content="San Diego"/>
<meta itemprop="addressRegion" content="CA"/>
<meta itemprop="postalCode" content="94043"/>
<meta itemprop="addressCountry" content="US"/>
</div>
<meta itemprop="telephone" content="+1-800-123-4567"/>
</div>
<meta itemprop="pickupTime" content="2027-08-05T16:00:00-07:00"/>
<div itemprop="dropoffLocation" itemscope itemtype="http://schema.org/Place">
<meta itemprop="name" content="Hertz LAX"/>
<div itemprop="address" itemscope itemtype="http://schema.org/PostalAddress">
<meta itemprop="streetAddress" content="1234 First Street"/>
<meta itemprop="addressLocality" content="Los Angeles"/>
<meta itemprop="addressRegion" content="CA"/>
<meta itemprop="postalCode" content="94043"/>
<meta itemprop="addressCountry" content="US"/>
</div>
<meta itemprop="telephone" content="+1-800-123-4567"/>
</div>
<meta itemprop="dropoffTime" content="2027-08-06T20:00:00-07:00"/>
<meta itemprop="price" content="119.00"/>
<meta itemprop="priceCurrency" content="USD"/>
</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 rezervasyonunuz için geçerli olup olmadığını görmek için e-postanızın ayrıntılarını inceleyin. Bu ek özellikleri işaretleyerek Google'ın kullanıcıya rezervasyonla ilgili çok daha ayrıntılı bir açıklama göstermesine izin verirsiniz.
RentalCarReservation
Tür adı: RentalCarReservation
Reservation'ı genişletir.
| Ad | Tür | Açıklama |
|---|---|---|
| bookingAgent | Organization veya Person | Rezervasyon aracısı veya acentesi. Dize de kabul eder (ör. ""). |
| 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ı. |
| checkinUrl | URL | Yolcuların check-in yapabileceği web sayfası. |
| confirmReservationUrl | URL | Rezervasyonun onaylanabileceği web sayfası. |
| dropoffLocation (Zorunlu) |
AutoRental veya Place | Arabanın iade edildiği yer. |
| dropoffLocation.address (Zorunlu) |
PostalAddress | Teslim etme yerinin adresi. |
| dropoffLocation.address.addressCountry (Zorunlu) |
Text veya Country | Teslim etme yerinin bulunduğu ülke. |
| dropoffLocation.address.addressLocality (Zorunlu) |
Metin | Teslim etme yerinin bulunduğu yer (ör. şehir). |
| dropoffLocation.address.addressRegion (Zorunlu) |
Metin | Teslimat yerinin bölgesi (ör. eyalet). |
| dropoffLocation.address.postalCode (Zorunlu) |
Metin | Teslim etme yerinin posta kodu. |
| dropoffLocation.address.streetAddress (Gerekli) |
Metin | Teslim etme yerinin açık adresi. |
| dropoffLocation.name (Gerekli) |
Metin | Teslim etme yerinin adı. |
| dropoffLocation.telephone | Metin | (Onay kartları/Arama yanıtları için önerilir) Yerle ilgili telefon numarası. |
| dropoffTime (Zorunlu) |
DateTime | Araç iade edildiğinde |
| 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ı. |
| pickupLocation (Zorunlu) |
AutoRental veya Place | Aracın alındığı yer. |
| pickupLocation.address (Zorunlu) |
PostalAddress | Teslim alma konumunun adresi. |
| pickupLocation.address.addressCountry (Zorunlu) |
Text veya Country | Teslim alma konumunun bulunduğu ülke. |
| pickupLocation.address.addressLocality (Zorunlu) |
Metin | Teslim alma konumunun bulunduğu yer (ör. şehir). |
| pickupLocation.address.addressRegion (Zorunlu) |
Metin | Teslim alma konumunun bölgesi (ör. eyalet). |
| pickupLocation.address.postalCode (Zorunlu) |
Metin | Teslim alma konumunun posta kodu. |
| pickupLocation.address.streetAddress (Gerekli) |
Metin | Teslim alma konumunun açık adresi. |
| pickupLocation.name (Gerekli) |
Metin | Teslim alma konumunun adı. |
| pickupLocation.telephone | Metin | (Onay kartları/Arama yanıtları için önerilir) Yerle ilgili telefon numarası. |
| pickupTime (Zorunlu) |
DateTime | Araba teslim alınırken |
| potentialAction (Zorunlu) |
CheckInAction, ConfirmAction, CancelAction veya | RentalCarReservation için desteklenen işlemler. |
| price | Metin | RentalCarReservation öğesinin toplam fiyatı. |
| priceCurrency | Metin | KiralıkArabaRezervasyonu'nun 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) |
Ayrılmış araç. | |
| reservationFor.brand (Zorunlu) |
Marka | Kiralık araçla ilişkili marka. |
| reservationFor.brand.name (Zorunlu) |
Metin | Markanın adı. |
| reservationFor.description | Metin | Kiralık arabanın kısa bir açıklaması. |
| reservationFor.model (Zorunlu) |
Metin | RentalCar'ın modeli. |
| reservationFor.name (Zorunlu) |
Metin | Kiralık aracın adı. |
| reservationFor.rentalCompany (Zorunlu) |
Kuruluş | Aracı kiralayan şirket. Dize de kabul eder (ör. "Hertz"). |
| reservationFor.rentalCompany.name (Zorunlu) |
Metin | Kiralama şirketinin adı. |
| reservationNumber (Zorunlu) |
Metin | Rezervasyonun numarası veya kimliği. |
| reservationStatus (Zorunlu) |
ReservationStatus | Rezervasyonun mevcut durumu. |
| underName (Zorunlu) |
Organization veya Person | Sürücü. |
| underName.email | Metin | E-posta adresi. |
| underName.name (Zorunlu) |
Metin | Kişinin adı. |
| url | URL | Rezervasyonun görüntülenebileceği web sayfası. |