Paketzustellung

Verwenden Sie diese Vorlage, um den Status der Paketzustellung zu beschreiben.

Anwendungsfälle

Einfache Paketzustellung

Mindestbeispiel für eine Paketzustellung

JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "ParcelDelivery",
  "deliveryAddress": {
    "@type": "PostalAddress",
    "name": "Pickup Corner",
    "streetAddress": "24 Willie Mays Plaza",
    "addressLocality": "San Francisco",
    "addressRegion": "CA",
    "addressCountry": "US",
    "postalCode": "94107"
  },
  "expectedArrivalUntil": "2027-03-12T12:00:00-08:00",
  "carrier": {
    "@type": "Organization",
    "name": "FedEx"
  },
  "itemShipped": {
    "@type": "Product",
    "name": "Google Chromecast"
  },
  "partOfOrder": {
    "@type": "Order",
    "orderNumber": "176057",
    "merchant": {
      "@type": "Organization",
      "name": "Bob Dole"
    }
  }
}
</script>

Mikrodaten

<div itemscope itemtype="http://schema.org/ParcelDelivery">
  <div itemprop="deliveryAddress" itemscope itemtype="http://schema.org/PostalAddress">
    <meta itemprop="name" content="Pickup Corner"/>
    <meta itemprop="streetAddress" content="24 Willie Mays Plaza"/>
    <meta itemprop="addressLocality" content="San Francisco"/>
    <meta itemprop="addressRegion" content="CA"/>
    <meta itemprop="addressCountry" content="US"/>
    <meta itemprop="postalCode" content="94107"/>
  </div>
  <meta itemprop="expectedArrivalUntil" content="2027-03-12T12:00:00-08:00"/>
  <div itemprop="carrier" itemscope itemtype="http://schema.org/Organization">
    <meta itemprop="name" content="FedEx"/>
  </div>
  <div itemprop="itemShipped" itemscope itemtype="http://schema.org/Product">
    <meta itemprop="name" content="Google Chromecast"/>
  </div>
  <div itemprop="partOfOrder" itemscope itemtype="http://schema.org/Order">
    <meta itemprop="orderNumber" content="176057"/>
    <div itemprop="merchant" itemscope itemtype="http://schema.org/Organization">
      <meta itemprop="name" content="Bob Dole"/>
    </div>
  </div>
</div>

Paketzustellung mit Versandinformationen

Beispiel für eine Paketzustellung mit detaillierten Versandinformationen

JSON-LD

<script type="application/ld+json">
{
  "@context": "http://schema.org",
  "@type": "ParcelDelivery",
  "deliveryAddress": {
    "@type": "PostalAddress",
    "name": "John Frank",
    "streetAddress": "24 Willie Mays Plaza",
    "addressLocality": "San Francisco",
    "addressRegion": "CA",
    "addressCountry": "US",
    "postalCode": "94107"
  },
  "originAddress": {
    "@type": "PostalAddress",
    "name": "John Frank",
    "streetAddress": "25 Willie Mays Plaza",
    "addressLocality": "San Francisco",
    "addressRegion": "CA",
    "addressCountry": "US",
    "postalCode": "94107"
  },
  "expectedArrivalFrom": "2027-03-10T12:00:00-08:00",
  "expectedArrivalUntil": "2027-03-12T12:00:00-08:00",
  "carrier": {
    "@type": "Organization",
    "name": "FedEx",
    "url": "http://fedex.com/"
  },
  "itemShipped": {
    "@type": "Product",
    "name": "iPod Mini",
    "url": "http://apple.com/ipad32gb",
    "image": "http://apple.com/images/ipad32gb.jpg",
    "sku": "B00DR0PDNE",
    "description": "iPod Mini 32Gb White",
    "brand": {
      "@type": "Brand",
      "name": "Apple"
    },
    "color": "white"
  },
  "trackingNumber": "3453291231",
  "trackingUrl": "http://fedex.com/track/3453291231",
  "potentialAction": {
    "@type": "TrackAction",
    "url": "http://fedex.com/track/3453291231"
  },
  "hasDeliveryMethod": {
    "@type": "ParcelService",
    "name": "http://schema.org/ParcelService"
  },
  "partOfOrder": {
    "@type": "Order",
    "orderNumber": "176057",
    "merchant": {
      "@type": "Organization",
      "name": "Bob Dole",
      "sameAs": "http://www.freebase.com/m/0fhkx"
    },
    "orderStatus": "http://schema.org/OrderInTransit"
  }
}
</script>

Mikrodaten

<div itemscope itemtype="http://schema.org/ParcelDelivery">
  <div itemprop="deliveryAddress" itemscope itemtype="http://schema.org/PostalAddress">
    <meta itemprop="name" content="John Frank"/>
    <meta itemprop="streetAddress" content="24 Willie Mays Plaza"/>
    <meta itemprop="addressLocality" content="San Francisco"/>
    <meta itemprop="addressRegion" content="CA"/>
    <meta itemprop="addressCountry" content="US"/>
    <meta itemprop="postalCode" content="94107"/>
  </div>
  <div itemprop="originAddress" itemscope itemtype="http://schema.org/PostalAddress">
    <meta itemprop="name" content="John Frank"/>
    <meta itemprop="streetAddress" content="25 Willie Mays Plaza"/>
    <meta itemprop="addressLocality" content="San Francisco"/>
    <meta itemprop="addressRegion" content="CA"/>
    <meta itemprop="addressCountry" content="US"/>
    <meta itemprop="postalCode" content="94107"/>
  </div>
  <meta itemprop="expectedArrivalFrom" content="2027-03-10T12:00:00-08:00"/>
  <meta itemprop="expectedArrivalUntil" content="2027-03-12T12:00:00-08:00"/>
  <div itemprop="carrier" itemscope itemtype="http://schema.org/Organization">
    <meta itemprop="name" content="FedEx"/>
    <link itemprop="url" href="http://fedex.com/"/>
  </div>
  <div itemprop="itemShipped" itemscope itemtype="http://schema.org/Product">
    <meta itemprop="name" content="iPod Mini"/>
    <link itemprop="url" href="http://apple.com/ipad32gb"/>
    <link itemprop="image" href="http://apple.com/images/ipad32gb.jpg"/>
    <meta itemprop="sku" content="B00DR0PDNE"/>
    <meta itemprop="description" content="iPod Mini 32Gb White"/>
    <div itemprop="brand" itemscope itemtype="http://schema.org/Brand">
      <meta itemprop="name" content="Apple"/>
    </div>
    <meta itemprop="color" content="white"/>
  </div>
  <meta itemprop="trackingNumber" content="3453291231"/>
  <link itemprop="trackingUrl" href="http://fedex.com/track/3453291231"/>
  <div itemprop="potentialAction" itemscope itemtype="http://schema.org/TrackAction">
    <link itemprop="url" href="http://fedex.com/track/3453291231"/>
  </div>
  <div itemprop="hasDeliveryMethod" itemscope itemtype="http://schema.org/ParcelService">
    <meta itemprop="name" content="http://schema.org/ParcelService"/>
  </div>
  <div itemprop="partOfOrder" itemscope itemtype="http://schema.org/Order">
    <meta itemprop="orderNumber" content="176057"/>
    <div itemprop="merchant" itemscope itemtype="http://schema.org/Organization">
      <meta itemprop="name" content="Bob Dole"/>
      <link itemprop="sameAs" href="http://www.freebase.com/m/0fhkx"/>
    </div>
    <link itemprop="orderStatus" href="http://schema.org/OrderInTransit"/>
  </div>
</div>

Markup testen

Sie können Ihr Markup mit dem E-Mail-Markup-Tester validieren. Fügen Sie Ihren Markup-Code ein und klicken Sie auf die Schaltfläche Validieren, um den Inhalt zu scannen und einen Bericht über vorhandene Fehler zu erhalten.

Spezifikation

In der folgenden Tabelle sind alle verfügbaren Eigenschaften für diesen Typ aufgeführt:

Attribut Typ Beschreibung
deliveryAddress PostalAddress Zieladresse (erforderlich):
deliveryAddress.name Text Name der PostalAddress.
deliveryAddress.streetAddress Text Die Adresse (erforderlich) Beispiel: 1600 Amphitheatre Pkwy.
deliveryAddress.addressLocality Text Der Ort (erforderlich) Beispiel: Mountain View.
deliveryAddress.addressRegion Text Die Region (erforderlich) Beispiel: CA.
deliveryAddress.addressCountry Text oder Land Das Land (erforderlich). Beispiel: USA. Sie können auch den aus zwei Buchstaben bestehenden Ländercode nach ISO 3166-1 ALPHA-2 angeben.
deliveryAddress.postalCode Text Die Postleitzahl (erforderlich). Beispielsweise 94043.
originAddress PostalAddress Adresse des Versandunternehmens.
originAddress.name Text Name der PostalAddress.
originAddress.streetAddress Text Die Adresse. Beispiel: 1600 Amphitheatre Pkwy.
originAddress.addressLocality Text Der Ort. Beispiel: Mountain View.
originAddress.addressRegion Text Die Region. Beispiel: CA.
originAddress.addressCountry Text oder Land Das Land. Beispiel: USA. Sie können auch den aus zwei Buchstaben bestehenden Ländercode nach ISO 3166-1 ALPHA-2 angeben.
originAddress.postalCode Text Die Postleitzahl (z. B. 94043)
expectedArrivalFrom DateTime Das früheste Datum, an dem das Paket voraussichtlich ankommt.
expectedArrivalUntil DateTime (erforderlich) Das späteste Datum, an dem das Paket ankommt.
Mobilfunkanbieter Organisation (erforderlich) Die für die Paketzustellung verantwortliche Person. Es wird auch eine Zeichenfolge (z.B. "FedEx") akzeptiert.
carrier.name Text Name der Organisation (erforderlich).
carrier.url URL URL der Organisation.
itemShipped Produkt oder Reservierung (erforderlich) Produkte in dieser Lieferung. Um die Menge darzustellen, wiederholen Sie entweder ein Produkt entsprechend oder verwenden Sie dieses Attribut nicht und geben Sie stattdessen mit partOfOrder an, um anzugeben, welche Produkte enthalten sind. Akzeptiert auch ein Array von -Objekten.
itemShipped.name Text (erforderlich) Name des Produkts.
itemShipped.url URL (empfohlen für Bestätigungskarten/Antworten für die Google Suche) URL des Produkts. Dies ist normalerweise die Produkt-Landingpage auf der Website des Händlers.
itemShipped.image URL (empfohlen für Bestätigungskarten/Antworten auf Suchanfragen) URL von einem Bild des Produkts, in der Regel ein Bild auf der Website des Händlers.
itemShipped.sku Text (empfohlen für Bestätigungskarten/Suchantworten) Die Stock Keeping Unit (SKU), d.h. eine händlerspezifische Kennung für ein Produkt oder eine Dienstleistung oder das Produkt, auf das sich das Angebot bezieht.
itemShipped.description Text Eine kurze Beschreibung des Produkts.
itemShipped.brand Marke Die mit dem Produkt verknüpfte Marke.
itemShipped.brand.name Text Name der Marke.
itemShipped.color Text Die Farbe des Produkts.
trackingNumber Text (empfohlen für Bestätigungskarten/Google Search Answers) Sendungsnummer des Versandunternehmens.
trackingUrl URL (empfohlen für Bestätigungskarten/Antworten der Google Suche) Webseite, auf der das Paket nachverfolgt werden kann.
hasDeliveryMethod DeliveryMethod Für die Übermittlung verwendete Methode.
deliveryStatus DeliveryEvent Es wird ein neuer Eintrag hinzugefügt, wenn das Paket jede Etappe seiner Reise (von der Sendung bis zur endgültigen Zustellung) durchläuft. Besonders nützlich für Lieferungen mit Abholung (z.B. im Geschäft, aus einem Schließfach).
partOfOrder Order (erforderlich) Details zur versendeten Bestellung. Wenn Details zu den in der Lieferung enthaltenen Produkten nicht durch „itemShipped“ (z.B. die versendete Menge) ausgedrückt werden können, verwenden Sie diese Bestellung stattdessen, um Produkte abzubilden.
partOfOrder.orderNumber Text (erforderlich) Die händlerspezifische Kennung für die Transaktion.
partOfOrder.merchant Organization oder Person (erforderlich) Die Partei, die die Bestellung vornimmt (z.B. ist Amazon.com ein Händler für viele Verkäufer). Akzeptiert auch einen String (z.B. "Bob Dole").
partOfOrder.merchant.name Text Name der Organisation (erforderlich).
partOfOrder.merchant.sameAs URL Die Freebase-URL des Händlers.
partOfOrder.orderStatus OrderStatus (empfohlen für Bestätigungskarten/Antworten der Suche) Der aktuelle Status der Bestellung.