Order

주문은 거래 확인서 (영수증)로, 고객이 수락한 Offer로 표시되는 여러 광고 항목을 포함할 수 있습니다.

사용 사례

기본 주문

주문의 최소 예는 다음과 같습니다.

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>

마이크로데이터

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

주문 보기 작업

`url` 속성을 설정하여 주문에 주문 보기 버튼을 추가할 수 있습니다. 모바일 애플리케이션에 직접 연결하려면 ViewAction도 추가하세요.

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>

마이크로데이터

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

결제 세부정보가 포함된 주문

자세한 결제 정보가 포함된 주문 예는 다음과 같습니다.

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>

마이크로데이터

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

마크업 테스트

이메일 마크업 테스터 도구를 사용하여 마크업의 유효성을 검사할 수 있습니다. 마크업 코드를 붙여넣고 검증 버튼을 클릭하여 콘텐츠를 검사하고 오류가 있는 경우 보고서를 받습니다.

사양

다음 표에는 이 유형에 사용할 수 있는 모든 속성이 나와 있습니다.

속성 유형 설명
판매자 Organization 또는 Person (필수) 주문을 받는 당사자입니다 (예: Amazon.com은 많은 판매자의 판매자임). 문자열 (예: 'Amazon.com')도 허용합니다.
merchant.name 텍스트 (필수) 조직의 이름입니다.
merchant.sameAs URL 판매자의 Freebase URL입니다.
orderNumber 텍스트 (필수) 거래의 판매자별 식별자입니다.
priceCurrency 텍스트 (필수) 주문 가격의 통화입니다 (3글자 ISO 4217 형식).
가격 숫자 또는 텍스트 (필수) 전체 거래의 총 가격입니다.
acceptedOffer 혜택 (필수) 주문에 포함된 혜택입니다. 객체 배열도 허용합니다.
acceptedOffer.itemOffered 제품 또는 예약 (필수) 판매되는 항목입니다.
acceptedOffer.itemOffered.name 텍스트 (필수) 제품의 이름입니다.
acceptedOffer.itemOffered.sku 텍스트 (확인 카드/검색 답변에 권장) 재고 관리 단위 (SKU), 즉 제품 또는 서비스의 판매자별 식별자 또는 혜택이 참조하는 제품입니다.
acceptedOffer.itemOffered.url URL (확인 카드/검색 답변에 권장) 제품의 URL로, 일반적으로 판매자 웹사이트의 제품 방문 페이지입니다.
acceptedOffer.itemOffered.image URL (확인 카드/검색 답변에 권장) 제품 이미지의 URL로, 일반적으로 판매자 웹사이트의 이미지입니다.
acceptedOffer.itemOffered.color 텍스트 제품의 색상입니다.
acceptedOffer.price 숫자 또는 텍스트 (필수) 제품의 단가입니다.
acceptedOffer.priceCurrency 텍스트 (필수) 가격의 통화입니다 (3글자 ISO 4217 형식).
acceptedOffer.eligibleQuantity QuantitativeValue (필수) 혜택 또는 가격 사양이 유효한 주문 수량의 간격 및 측정 단위입니다.
acceptedOffer.eligibleQuantity.value 숫자 (필수) 제품 특성의 값입니다.
acceptedOffer.priceSpecification PriceSpecification 단가 및 배송 또는 결제 요금을 나타내는 하나 이상의 자세한 가격 사양입니다.
acceptedOffer.priceSpecification.price 숫자 또는 텍스트 전체 거래의 총 가격입니다.
acceptedOffer.priceSpecification.priceCurrency 텍스트 주문 가격의 통화입니다 (3글자 ISO 4217 형식).
acceptedOffer.itemCondition OfferItemCondition 제품 또는 서비스의 상태 또는 혜택에 포함된 제품 또는 서비스에 대한 텍스트 설명입니다.
acceptedOffer.seller Organization 또는 Person 주문이 접수된 당사자입니다. 문자열 (예: '')도 허용합니다.
acceptedOffer.seller.name 텍스트 조직의 이름입니다.
priceSpecification PriceSpecification (확인 카드/검색 답변에 권장) 가격/priceCurrency에 대한 더 자세한 대안입니다. 세금 및 배송비를 지정하는 데도 사용됩니다. 객체 배열도 허용합니다.
URL URL (확인 카드/검색 답변에 권장) 주문의 URL로, 일반적으로 사용자가 주문에 관한 자세한 내용을 가져올 수 있는 판매자 웹사이트의 링크입니다.
orderStatus OrderStatus (확인 카드/검색 답변에 권장) 주문의 현재 상태입니다.
paymentMethod PaymentMethod 주문에 사용된 신용카드 또는 기타 결제 방법의 이름입니다.
paymentMethodId 텍스트 사용된 결제 방법의 식별자입니다 (예: 신용카드의 마지막 4자리 숫자).
orderDate DateTime 주문이 접수된 날짜입니다.
isGift 불리언 구매자가 아닌 다른 사람에게 선물로 혜택이 수락되었나요?
할인 숫자 또는 텍스트 적용된 할인입니다.
discountCurrency 텍스트 할인의 통화입니다 (3글자 ISO 4217 형식).
고객 Person 또는 Organization 주문을 하는 당사자입니다.
customer.name 텍스트 사용자 이름입니다.
billingAddress PostalAddress 주문의 청구서 수신 주소입니다.
billingAddress.name 텍스트 PostalAddress의 이름입니다.
billingAddress.streetAddress 텍스트 상세 주소입니다. 예: 1600 Amphitheatre Pkwy
billingAddress.addressLocality 텍스트 지역입니다. 예: Mountain View
billingAddress.addressRegion 텍스트 지역입니다. 예: CA
billingAddress.addressCountry 텍스트 또는 국가 국가입니다. 예: 미국 두 글자로 된 ISO 3166-1 alpha-2 국가 코드를 제공할 수도 있습니다.