Kiralık Araç Rezervasyonu

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

Temel rezervasyon onayı

Araç kiralama rezervasyon onayı gönderdiğinizde e-postanıza aşağıdaki işaretlemeyi 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 olması açısından, desteklenen tüm alanların doldurulduğu bir örneği aşağıda görebilirsiniz:

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.

İş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 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 kullanıcıya rezervasyonla ilgili daha kapsamlı bir açıklama göstermesine izin vermiş olursunuz.

KiralıkAraç Rezervasyonu

Tür adı: RentalCarReservation

Rezervasyon'u genişletir

Ad Tür Açıklama
bookingAgent Kuruluş veya Kişi Rezervasyon temsilcisi veya acentesi. Bir dizeyi de kabul eder (ör. "").
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ı.
checkinUrl URL Yolcunun giriş yapabileceği web sayfası.
onay Rezervasyonu URL'si URL Rezervasyonun onaylanabileceği web sayfası.
dropoffLocation
(Gerekli)
AutoRental veya Place Arabanın döndürüldüğü yer.
dropoffLocation.adres
(Gerekli)
Posta Adresi Teslimat konumunun adresi.
dropoffLocation.address.addressCountry
(Gerekli)
Metin veya Ülke Teslim etme ülkesi.
dropoffLocation.address.addressLocality
(Gerekli)
Text Kalkış yerinin bulunduğu yer (ör. şehir).
dropoffLocation.address.addressRegion
(Gerekli)
Text Teslimat bölgesinin bölgesi (ör. Eyalet).
dropoffLocation.address.postalCode
(Gerekli)
Text Teslimat bölgesinin posta kodu.
dropoffLocation.address.streetAddress
(Gerekli)
Text Teslimat konumunun açık adresi.
dropoffLocation.ad
(Gerekli)
Text Teslimat konumunun adı.
dropoffLocation.telefon Text (Onay Kartları/Arama Cevapları için önerilir) Yerin telefon numarası.
dropoffTime
(Gerekli)
DateTime Araba geri döndüğünde.
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ı.
pickupLocation
(Gerekli)
AutoRental veya Place Aracın alındığı yer.
pickupLocation.adres
(Gerekli)
Posta Adresi Teslim alma konumunun adresi.
pickupLocation.address.addressCountry
(Gerekli)
Metin veya Ülke Teslim alma konumu ülkesi.
pickupLocation.address.addressLocality
(Gerekli)
Text Teslim alma konumunun bulunduğu şehir (ör. şehir).
pickupLocation.address.addressRegion
(Gerekli)
Text Teslim alma konumunun bulunduğu bölge (ör. Eyalet).
pickupLocation.address.postalCode
(Gerekli)
Text Teslim alma konumunun posta kodu.
pickupLocation.address.streetAddress
(Gerekli)
Text Teslim alma konumunun açık adresi.
pickupLocation.ad
(Gerekli)
Text Teslim alma konumunun adı.
pickupLocation.telefon Text (Onay Kartları/Arama Cevapları için önerilir) Yerin telefon numarası.
pickupTime
(Gerekli)
DateTime Araba algılandığında.
potentialAction
(Gerekli)
CheckInAction, ConfirmAction, CancelAction veya RentalCarReservation için desteklenen işlemler.
price Text RentalCarReservation'ın toplam fiyatı.
priceCurrency Text RentalCarReservation'un 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)
Rezerve edilen araba.
rezervasyonFor.marka
(Gerekli)
Marka RentalCar ile ilişkilendirilen marka.
rezervasyonFor.brand.adı
(Gerekli)
Text Markanın adı.
Rezervasyon amaçlı.description Text RentalCar ile ilgili kısa bir açıklama.
rezervasyonFor.model
(Gerekli)
Text RentalCar'ın modeli.
reviewFor.name
(Gerekli)
Text Kiralık Araba'nın adı.
rezervasyonFor.rentalCompany
(Gerekli)
Kuruluş Araç kiralayan şirket. Bir dizeyi de kabul eder (ör. "Hertz").
rezervasyonFor.rentalCompany.ad
(Gerekli)
Text Kiralama şirketinin adı.
rezervasyon numarası
(Gerekli)
Text Rezervasyonun numarası veya kimliği.
rezervasyon durumu
(Gerekli)
Rezervasyon Durumu Rezervasyonun mevcut durumu.
underName
(Gerekli)
Kuruluş veya Kişi Sürücü.
underName.e-posta Text E-posta adresi.
underName.ad
(Gerekli)
Text Kişinin adı.
url URL Rezervasyonun görüntülenebileceği web sayfası.