Sipariş, bir işlemin (makbuzun) onayıdır ve her biri müşteri tarafından kabul edilmiş bir Offer ile temsil edilen birden fazla kalem içerebilir.
Kullanım alanları
Temel sipariş
Sipariş için en basit örnek:
JSON-LD
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Order",
"merchant": {
"@type": "Organization",
"name": "Amazon.com"
},
"orderNumber": "123-4567890-1234567",
"priceCurrency": "USD",
"price": "29.99",
"acceptedOffer": {
"@type": "Offer",
"itemOffered": {
"@type": "Product",
"name": "Google Chromecast"
},
"price": "29.99",
"priceCurrency": "USD",
"eligibleQuantity": {
"@type": "QuantitativeValue",
"value": "1"
}
}
}
</script>
Mikro veri
<div itemscope itemtype="http://schema.org/Order">
<div itemprop="merchant" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Amazon.com"/>
</div>
<meta itemprop="orderNumber" content="123-4567890-1234567"/>
<meta itemprop="priceCurrency" content="USD"/>
<meta itemprop="price" content="29.99"/>
<div itemprop="acceptedOffer" itemscope itemtype="http://schema.org/Offer">
<div itemprop="itemOffered" itemscope itemtype="http://schema.org/Product">
<meta itemprop="name" content="Google Chromecast"/>
</div>
<meta itemprop="price" content="29.99"/>
<meta itemprop="priceCurrency" content="USD"/>
<div itemprop="eligibleQuantity" itemscope itemtype="http://schema.org/QuantitativeValue">
<meta itemprop="value" content="1"/>
</div>
</div>
</div>
Sipariş işlemini görüntüle
Siparişleri Görüntüle düğmesini url özelliğini ayarlayarak siparişlerinize ekleyebilirsiniz. Doğrudan mobil uygulamaya bağlantı vermek için ayrıca ViewAction ekleyin:
JSON-LD
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Order",
"merchant": {
"@type": "Organization",
"name": "Amazon.com"
},
"orderNumber": "123-4567890-1234567",
"orderStatus": "http://schema.org/OrderProcessing",
"priceCurrency": "USD",
"price": "29.99",
"priceSpecification": {
"@type": "PriceSpecification",
"validFrom": "2027-12-07T23:30:00-08:00"
},
"acceptedOffer": {
"@type": "Offer",
"itemOffered": {
"@type": "Product",
"name": "Google Chromecast",
"sku": "B00DR0PDNE",
"url": "http://www.amazon.com/Google-Chromecast-Streaming-Media-Player/dp/B00DR0PDNE/",
"image": "http://ecx.images-amazon.com/images/I/811nvG%2BLgML._SY550_.jpg"
},
"price": "29.99",
"priceCurrency": "USD",
"eligibleQuantity": {
"@type": "QuantitativeValue",
"value": "1"
}
},
"url": "https://www.amazon.ca/gp/css/summary/edit.html/orderID=123-4567890-1234567",
"potentialAction": {
"@type": "ViewAction",
"url": "https://www.amazon.ca/gp/css/summary/edit.html/orderID=123-4567890-1234567"
}
}
</script>
Mikro veri
<div itemscope itemtype="http://schema.org/Order">
<div itemprop="merchant" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Amazon.com"/>
</div>
<link itemprop="orderStatus" href="http://schema.org/OrderProcessing"/>
<meta itemprop="orderNumber" content="123-4567890-1234567"/>
<meta itemprop="priceCurrency" content="USD"/>
<meta itemprop="price" content="29.99"/>
<div itemprop="acceptedOffer" itemscope itemtype="http://schema.org/Offer">
<div itemprop="itemOffered" itemscope itemtype="http://schema.org/Product">
<meta itemprop="name" content="Google Chromecast"/>
<link itemprop="url" href="http://www.amazon.com/Google-Chromecast-Streaming-Media-Player/dp/B00DR0PDNE/"/>
<link itemprop="image" href="http://ecx.images-amazon.com/images/I/811nvG%2BLgML._SY550_.jpg"/>
<meta itemprop="sku" content="B00DR0PDNE"/>
</div>
<meta itemprop="price" content="29.99"/>
<meta itemprop="priceCurrency" content="USD"/>
<div itemprop="eligibleQuantity" itemscope itemtype="http://schema.org/QuantitativeValue">
<meta itemprop="value" content="1"/>
</div>
</div>
<link itemprop="url" href="https://www.amazon.ca/gp/css/summary/edit.html/orderID=123-4567890-1234567"/>
<div itemprop="potentialAction" itemscope itemtype="http://schema.org/ViewAction">
<link itemprop="url" href="https://www.amazon.ca/gp/css/summary/edit.html/orderID=123-4567890-1234567"/>
</div>
<div itemprop="priceSpecification" itemscope itemtype="http://schema.org/PriceSpecification">
<meta itemprop="validFrom" content="2027-12-07T23:30:00-08:00"/>
</div>
</div>
Fatura bilgileriyle birlikte sipariş verin
Ayrıntılı fatura bilgilerini içeren örnek sipariş:
JSON-LD
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Order",
"merchant": {
"@type": "Organization",
"name": "Amazon.com"
},
"orderNumber": "123-4567890-1234567",
"priceCurrency": "USD",
"price": "539.00",
"priceSpecification": {
"@type": "PriceSpecification",
"validFrom": "2027-12-07T23:30:00-08:00"
},
"acceptedOffer": [
{
"@type": "Offer",
"itemOffered": {
"@type": "Product",
"name": "Samsung Chromebook",
"sku": "B009LL9VDG",
"url": "http://www.amazon.com/Samsung-XE303C12-A01US-Chromebook-Wi-Fi-11-6-Inch/dp/B009LL9VDG/",
"image": "http://ecx.images-amazon.com/images/I/81H-DO3qX0L._SX522_.jpg"
},
"price": "249.99",
"priceCurrency": "USD",
"eligibleQuantity": {
"@type": "QuantitativeValue",
"value": "2"
},
"seller": {
"@type": "Organization",
"name": "Samsung Marketplace Store"
}
},
{
"@type": "Offer",
"itemOffered": {
"@type": "Product",
"name": "Google Chromecast",
"sku": "B00DR0PDNE",
"url": "http://www.amazon.com/Google-Chromecast-Streaming-Media-Player/dp/B00DR0PDNE/",
"image": "http://ecx.images-amazon.com/images/I/811nvG%2BLgML._SY550_.jpg"
},
"price": "29.99",
"priceCurrency": "USD",
"eligibleQuantity": {
"@type": "QuantitativeValue",
"value": "1"
},
"seller": {
"@type": "Organization",
"name": "Google Store @ Amazon"
}
}
],
"url": "https://www.amazon.ca/gp/css/summary/edit.html/orderID=123-4567890-1234567",
"potentialAction": {
"@type": "ViewAction",
"url": "https://www.amazon.ca/gp/css/summary/edit.html/orderID=123-4567890-1234567"
},
"orderStatus": "http://schema.org/OrderProcessing",
"paymentMethod": {
"@type": "PaymentMethod",
"name": "http://schema.org/CreditCard"
},
"paymentMethodId": "**** **** **** 1234",
"orderDate": "2027-11-07T23:30:00-08:00",
"isGift": "false",
"discount": "0.97",
"discountCurrency": "USD",
"customer": {
"@type": "Person",
"name": "John Smith"
},
"billingAddress": {
"@type": "PostalAddress",
"name": "Google",
"streetAddress": "1600 Amphitheatre Pkwy",
"addressLocality": "Mountain View",
"addressRegion": "CA",
"addressCountry": "USA"
}
}
</script>
Mikro veri
<div itemscope itemtype="http://schema.org/Order">
<div itemprop="merchant" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Amazon.com"/>
</div>
<meta itemprop="orderNumber" content="123-4567890-1234567"/>
<meta itemprop="priceCurrency" content="USD"/>
<meta itemprop="price" content="539.00"/>
<div itemprop="acceptedOffer" itemscope itemtype="http://schema.org/Offer">
<div itemprop="itemOffered" itemscope itemtype="http://schema.org/Product">
<meta itemprop="name" content="Samsung Chromebook"/>
<meta itemprop="sku" content="B009LL9VDG"/>
<link itemprop="url" href="http://www.amazon.com/Samsung-XE303C12-A01US-Chromebook-Wi-Fi-11-6-Inch/dp/B009LL9VDG/"/>
<link itemprop="image" href="http://ecx.images-amazon.com/images/I/81H-DO3qX0L._SX522_.jpg"/>
</div>
<meta itemprop="price" content="249.99"/>
<meta itemprop="priceCurrency" content="USD"/>
<div itemprop="eligibleQuantity" itemscope itemtype="http://schema.org/QuantitativeValue">
<meta itemprop="value" content="2"/>
</div>
<div itemprop="seller" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Samsung Marketplace Store"/>
</div>
</div>
<div itemprop="acceptedOffer" itemscope itemtype="http://schema.org/Offer">
<div itemprop="itemOffered" itemscope itemtype="http://schema.org/Product">
<meta itemprop="name" content="Google Chromecast"/>
<meta itemprop="sku" content="B00DR0PDNE"/>
<link itemprop="url" href="http://www.amazon.com/Google-Chromecast-Streaming-Media-Player/dp/B00DR0PDNE/"/>
<link itemprop="image" href="http://ecx.images-amazon.com/images/I/811nvG%2BLgML._SY550_.jpg"/>
</div>
<meta itemprop="price" content="29.99"/>
<meta itemprop="priceCurrency" content="USD"/>
<div itemprop="eligibleQuantity" itemscope itemtype="http://schema.org/QuantitativeValue">
<meta itemprop="value" content="1"/>
</div>
<div itemprop="seller" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="Google Store @ Amazon"/>
</div>
</div>
<link itemprop="url" href="https://www.amazon.ca/gp/css/summary/edit.html/orderID=123-4567890-1234567"/>
<div itemprop="potentialAction" itemscope itemtype="http://schema.org/ViewAction">
<link itemprop="url" href="https://www.amazon.ca/gp/css/summary/edit.html/orderID=123-4567890-1234567"/>
</div>
<link itemprop="orderStatus" href="http://schema.org/OrderProcessing"/>
<div itemprop="paymentMethod" itemscope itemtype="http://schema.org/PaymentMethod">
<meta itemprop="name" content="http://schema.org/CreditCard"/>
</div>
<meta itemprop="paymentMethodId" content="**** **** **** 1234"/>
<meta itemprop="orderDate" content="2027-11-07T23:30:00-08:00"/>
<meta itemprop="isGift" content="false"/>
<meta itemprop="discount" content="0.97"/>
<meta itemprop="discountCurrency" content="USD"/>
<div itemprop="customer" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="John Smith"/>
</div>
<div itemprop="billingAddress" itemscope itemtype="http://schema.org/PostalAddress">
<meta itemprop="name" content="Google"/>
<meta itemprop="streetAddress" content="1600 Amphitheatre Pkwy"/>
<meta itemprop="addressLocality" content="Mountain View"/>
<meta itemprop="addressRegion" content="CA"/>
<meta itemprop="addressCountry" content="USA"/>
</div>
<div itemprop="priceSpecification" itemscope itemtype="http://schema.org/PriceSpecification">
<meta itemprop="validFrom" content="2027-12-07T23:30:00-08:00"/>
</div>
</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 hatalarla ilgili rapor almak için Doğrula düğmesini tıklayın.
Spesifikasyon
Aşağıdaki tabloda bu tür için mevcut tüm özellikler listelenmiştir:
| Mülk | Tür | Açıklama |
|---|---|---|
| tüccar | Organization veya Person | (gerekli) Siparişi alan taraf (örneğin Amazon.com birçok satıcı için bir tüccardır). Ayrıca bir metin dizesi de kabul eder (örneğin "Amazon.com"). |
| tüccar.adı | Metin | (zorunlu) Kuruluşun adı. |
| tüccar.aynı | URL | Satıcıya ait Freebase URL'si. |
| orderNumber | Metin | (Zorunlu) İşlemin satıcıya özel tanımlayıcısı. |
| priceCurrency | Metin | (gerekli) Sipariş fiyatının para birimi (3 harfli ISO 4217 formatında). |
| fiyat | Sayı veya Metin | (gerekli) Tüm işlemin toplam fiyatı. |
| acceptedOffer | Teklif | (gerekli) Siparişe dahil olan teklifler. Nesne dizisi de kabul eder. |
| kabuledilenTeklif.teklif edilenürüm | Ürün veya Rezervasyon | (gerekli) Satılan ürün. |
| kabuledilenTeklif.teklifedilenürüm.adı | Metin | (gerekli) Ürünün Adı. |
| acceptedOffer.itemOffered.sku | Metin | (onay kartları/Arama Yanıtları için önerilir) Stok Takip Birimi (SKU), yani bir ürün veya hizmet için satıcıya özgü bir tanımlayıcı veya teklifin atıfta bulunduğu ürün. |
| acceptedOffer.itemOffered.url | URL | (onay kartları/Arama Yanıtları için önerilir) Ürünün URL'si, genellikle satıcının web sitesindeki ürünün açılış sayfası. |
| kabuledilenTeklif.teklifedilenürüm.resim | URL | (onay kartları/Arama Yanıtları için önerilir) Ürünün bir resminin URL'si, genellikle satıcının web sitesindeki bir resim. |
| kabuledilenTeklif.teklifedilenürüm.renk | Metin | Ürünün rengi. |
| kabuledilenTeklif.fiyat | Sayı veya Metin | (gerekli) Ürünün birim fiyatı. |
| kabuledilenTeklif.fiyatPara Birimi | Metin | (gerekli) Fiyatın para birimi (3 harfli ISO 4217 formatında). |
| kabuledilenTeklif.uygunMiktar | QuantitativeValue | (gerekli) Teklif veya fiyat spesifikasyonunun geçerli olduğu sipariş miktarlarının aralığı ve ölçü birimi. |
| kabuledilenTeklif.uygunMiktar.değer | Sayı | (gerekli) Ürün özelliğinin değeri. |
| KabulEdilenTeklif.FiyatBelirtimi | PriceSpecification | Birim fiyatı ve teslimat veya ödeme ücretlerini belirten bir veya daha fazla ayrıntılı fiyat belirtimi. |
| kabuledilenTeklif.fiyatBelirtimi.fiyat | Sayı veya Metin | Tüm işlemin toplam fiyatı. |
| kabuledilenTeklif.fiyatBelirtimi.fiyatPara Birimi | Metin | Sipariş fiyatının para birimi (3 harfli ISO 4217 formatında). |
| kabuledilenTeklif.ürünKoşulu | OfferItemCondition | Ürün veya hizmetin ya da teklifte yer alan ürün veya hizmetlerin durumuna ilişkin metinsel bir açıklama. |
| kabuledilenTeklif.satıcı | Organization veya Person | Siparişin verildiği taraf. Dize de kabul eder (ör. ""). |
| acceptedOffer.seller.name | Metin | Kuruluşun adı. |
| priceSpecification | PriceSpecification | (onay kartları/Arama Yanıtları için önerilir) price/priceCurrency'ye daha ayrıntılı alternatifler. Ayrıca vergi ve teslimat ücretlerini belirtmek için de kullanılır. Nesne dizisi de kabul eder. |
| url | URL | (Onay kartları/Arama Yanıtları için önerilir) Siparişin URL'si, genellikle kullanıcının sipariş hakkında daha fazla ayrıntı alabileceği satıcının web sitesine bir bağlantıdır. |
| orderStatus | OrderStatus | (onay kartları/Arama Yanıtları için önerilir) Siparişin mevcut durumu. |
| paymentMethod | PaymentMethod | Sipariş için kullanılan kredi kartının veya diğer ödeme yönteminin adı. |
| paymentMethodId | Metin | Kullanılan ödeme yönteminin tanımlayıcısı (ör. kredi kartının son 4 hanesi). |
| orderDate | DateTime | Siparişin verildiği tarih. |
| isGift | Boole | Teklif, alıcıdan başka birine hediye olarak mı kabul edildi? |
| indirim | Sayı veya Metin | Herhangi bir indirim uygulanmıştır. |
| discountCurrency | Metin | İndirim tutarı (3 harfli ISO 4217 formatında). |
| müşteri | Person veya Organization | Siparişi veren taraf. |
| müşteri.adı | Metin | Kişinin adı. |
| billingAddress | PostalAddress | Siparişin fatura adresi. |
| faturaAdresi.adı | Metin | Posta adresinin adı. |
| faturaAdresi.sokakAdresi | Metin | Açık adres. Örneğin, 1600 Amphitheatre Pkwy. |
| faturaAdresi.adresKonumu | Metin | Şehir. Örneğin, Mountain View. |
| faturaAdresi.adresBölgesi | Metin | Bölge. Örneğin, CA. |
| faturaAdresi.adresÜlkesi | Metin veya Ülke | Ülke. Örneğin, ABD. Ayrıca iki harfli ISO 3166-1 alpha-2 ülke kodunu da verebilirsiniz. |