การจองรถเช่า

Use Case

กรณีการใช้งานต่อไปนี้แสดงตัวอย่างที่พบบ่อยเกี่ยวกับวิธีใช้สคีมา RentalCarReservation ใช้ตัวอย่างเหล่านี้เพื่อให้แน่ใจว่ามาร์กอัปของคุณมีโครงสร้างที่เหมาะสม

การยืนยันการจองพื้นฐาน

ฝังมาร์กอัปต่อไปนี้ในอีเมลเมื่อคุณส่งการยืนยันการจองรถเช่า

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>

Microdata

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

ตัวอย่างที่มีช่องที่รองรับทั้งหมด

โปรดดูตัวอย่างพร้อมช่องที่รองรับทั้งหมดที่ป้อนไว้เพื่อเป็นข้อมูลอ้างอิง

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>

Microdata

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

ทดสอบมาร์กอัปของคุณ

คุณตรวจสอบมาร์กอัปได้โดยใช้เครื่องมือทดสอบมาร์กอัปอีเมล วางรหัสมาร์กอัปแล้วคลิกปุ่มตรวจสอบเพื่อสแกนเนื้อหาและรับรายงานเกี่ยวกับข้อผิดพลาดที่มีอยู่

ข้อมูลจำเพาะ

ตรวจสอบรายละเอียดของอีเมลเพื่อดูว่าที่พักเหล่านี้ใช้กับการจองของคุณหรือไม่ การมาร์กอัปพร็อพเพอร์ตี้เพิ่มเติมเหล่านี้หมายความว่าคุณอนุญาตให้ Google แสดงคําอธิบายการจองที่สมบูรณ์ยิ่งขึ้นแก่ผู้ใช้

การจองรถเช่า

ชื่อประเภท: RentalCarReservation

ขยายการจอง

ชื่อ ประเภท คำอธิบาย
Agent ของการจอง องค์กรหรือบุคคล ตัวแทนหรือเอเจนซีที่จอง ยอมรับสตริงด้วย (เช่น "")
การจองAgent.name Text ชื่อของตัวแทน/บริการ
BookAgent.URL URL เว็บไซต์ของตัวแทน/บริการ
เวลาจอง DateTime วันที่ที่จอง
cancelReservationUrl URL หน้าเว็บที่ยกเลิกการจองได้
checkinUrl URL หน้าเว็บที่ผู้โดยสารสามารถเช็คอินได้
confirmReservationUrl URL หน้าเว็บที่สามารถยืนยันการจองได้
dropoffLocation
(ต้องระบุ)
เช่าบ้าน หรือสถานที่ ตําแหน่งที่คืนรถ
dropoffLocation.address
(ต้องระบุ)
ที่อยู่ทางไปรษณีย์ ที่อยู่ของสถานที่ตั้งที่ส่งคืน
dropoffLocation.address.addressCountry
(ต้องระบุ)
ข้อความหรือประเทศ ประเทศที่ออกจากสถานที่
dropoffLocation.address.addressLocality
(ต้องระบุ)
Text ย่าน (เช่น เมือง) ของตําแหน่งส่ง
dropoffLocation.address.addressRegion
(ต้องระบุ)
Text ภูมิภาค (เช่น รัฐ) ของตําแหน่งส่ง
dropoffLocation.address.postalCode
(ต้องระบุ)
Text รหัสไปรษณีย์ของสถานที่ส่ง
dropoffLocation.address.streetAddress
(ต้องระบุ)
Text ที่อยู่ของสถานที่ส่ง
dropoffLocation.name
(ต้องระบุ)
Text ชื่อสถานที่ส่ง
dropoffLocationโทรศัพท์ Text (แนะนําสําหรับการ์ดยืนยัน/คําตอบในการค้นหา) หมายเลขโทรศัพท์ของสถานที่
dropoffTime
(ต้องระบุ)
DateTime เมื่อส่งคืนรถ
เวลาที่แก้ไขแล้ว DateTime (แนะนําสําหรับการ์ดยืนยัน/คําตอบในการค้นหา) เวลาที่แก้ไขการจองครั้งล่าสุด
modifyReservationUrl URL (แนะนําสําหรับการ์ดยืนยัน/คําตอบในการค้นหา) หน้าเว็บที่แก้ไขการจองได้
pickupLocation
(ต้องระบุ)
เช่าบ้าน หรือสถานที่ สถานที่รับรถ
pickupLocation.ที่อยู่
(ต้องระบุ)
ที่อยู่ทางไปรษณีย์ ที่อยู่ของจุดรับสินค้า
pickupLocation.address.addressCountry
(ต้องระบุ)
ข้อความหรือประเทศ ประเทศที่มารับได้
pickupLocation.address.addressLocality
(ต้องระบุ)
Text ย่าน (เช่น เมือง) ของจุดรับสินค้า
pickupLocation.address.addressRegion
(ต้องระบุ)
Text ภูมิภาค (เช่น รัฐ) ของจุดรับสินค้า
pickupLocation.address.postalCode
(ต้องระบุ)
Text รหัสไปรษณีย์ของจุดรับสินค้า
pickupLocation.address.streetAddress
(ต้องระบุ)
Text ที่อยู่ของสถานที่รับสินค้า
pickupLocation.name
(ต้องระบุ)
Text ชื่อสถานที่รับ
pickupLocation.โทรศัพท์ Text (แนะนําสําหรับการ์ดยืนยัน/คําตอบในการค้นหา) หมายเลขโทรศัพท์ของสถานที่
เวลารับสินค้า
(ต้องระบุ)
DateTime เวลาที่ขึ้นรถ
potentialAction
(ต้องระบุ)
CheckInAction, ConfirmAction, CancelAction หรือ การดําเนินการที่รองรับสําหรับการเช่ารถเช่า
price Text ราคารวมของบริการเช่ารถ
สกุลเงินราคา Text สกุลเงิน (ในรูปแบบ ISO 4217 แบบ 3 อักขระ) ของราคาเช่าการเช่า
การเป็นสมาชิกโปรแกรม การเป็นสมาชิกโปรแกรม การเป็นสมาชิกในใบปลิว โปรแกรมสะสมคะแนนของโรงแรม ฯลฯ ในการจอง
programmember.memberNumber Text ตัวระบุของการเป็นสมาชิก
programmember.program Text ชื่อโปรแกรม
servingFor
For (ต้องระบุ)
รถที่จองไว้
ReserveFor.brand
(ต้องระบุ)
แบรนด์ แบรนด์ที่เชื่อมโยงกับ RentalCar
ReserveFor.brand.name
(ต้องระบุ)
Text ชื่อแบรนด์
จองที่description Text คําอธิบายสั้นๆ ของการเช่ารถ
ReserveFor.model
(ต้องระบุ)
Text รุ่นของ CaralCar
ReserveFor.name
(ต้องระบุ)
Text ชื่อบริการรถเช่า
ReserveFor.rentalCompany
(ต้องระบุ)
องค์กร บริษัทเช่ารถ ยอมรับสตริงด้วย (เช่น "Hertz")
ReserveFor.rentalCompany.name
(ต้องระบุ)
Text ชื่อบริษัทเช่า
servingNumber
(ต้องระบุ)
Text หมายเลขหรือรหัสของการจอง
servingStatus
(ต้องระบุ)
สถานะการจอง สถานะปัจจุบันของการจอง
underName
(ต้องระบุ)
องค์กรหรือบุคคล คนขับ
UnderName.อีเมล Text อีเมล
UnderName.name
(ต้องระบุ)
Text ชื่อบุคคล
URL URL หน้าเว็บที่สามารถดูการจองได้