컬렉션을 사용해 정리하기 내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.

리뷰 스니펫

리뷰 스니펫은 리뷰 웹사이트의 리뷰 또는 평점을 간단하게 발췌한 것으로, 보통 여러 리뷰 작성자의 평균 누계 평점을 표시합니다. Google이 유효한 리뷰나 평점 마크업을 발견하면, 리뷰 또는 평점의 기타 요약 정보와 별표를 포함하는 리치 스니펫을 표시할 수 있습니다. 리뷰 텍스트 외에 평점은 숫자 척도(예: 1~5)로 나타낸 평가입니다. 리뷰 스니펫은 리치 결과 또는 Google 지식 패널에 표시될 수 있습니다. 다음 콘텐츠 유형 및 하위유형에 평점을 제공할 수 있습니다.

Google 검색의 리뷰 스니펫

Google은 다음 schema.org 유형 및 하위유형에 관한 리뷰도 지원합니다.

다음과 같은 방법으로 페이지에 구조화된 Review 데이터를 추가할 수 있습니다.

  • 간단한 리뷰 추가
  • review 속성을 사용하여 다른 schema.org 유형에 리뷰 중첩
  • 누계 평점 추가: 마크업된 콘텐츠에 작성자와 리뷰 날짜가 모두 포함되어 있는 경우 개별 리뷰의 평점을 생략할 수 있습니다. 누계 리뷰의 경우, 표시할 리치 스니펫의 평균 평점을 제공해야 합니다.
  • aggregateRating 속성을 사용하여 다른 schema.org 유형에 누계 평점 중첩

간단한 리뷰

다음은 간단한 리뷰의 예입니다.

JSON-LD


<html>
  <head>
  <title>Legal Seafood</title>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org/",
      "@type": "Review",
      "itemReviewed": {
        "@type": "Restaurant",
        "image": "https://www.example.com/seafood-restaurant.jpg",
        "name": "Legal Seafood",
        "servesCuisine": "Seafood",
        "priceRange": "$$$",
        "telephone": "1234567",
        "address" :{
          "@type": "PostalAddress",
          "streetAddress": "123 William St",
          "addressLocality": "New York",
          "addressRegion": "NY",
          "postalCode": "10038",
          "addressCountry": "US"
        }
      },
      "reviewRating": {
        "@type": "Rating",
        "ratingValue": "4"
      },
      "name": "A good seafood place.",
      "author": {
        "@type": "Person",
        "name": "Bob Smith"
      },
      "publisher": {
        "@type": "Organization",
        "name": "Washington Times"
      }
    }
    </script>
  </head>
  <body>
  </body>
</html>

RDFa


 <html>
  <head>
    <title>Legal Seafood</title>
  </head>
  <body>
    <div vocab="https://schema.org/" typeof="Review">
      <div property="itemReviewed" typeof="Restaurant">
        <img property="image" src="https://example.com/photos/1x1/seafood-restaurant.jpg" alt="Legal Seafood"/>
        <span property="name">Legal Seafood</span>
        <span property="servesCuisine">Seafood</span>
        <span property="priceRange">$$$</span>
        <span property="telephone">1234567</span>
        <span property="address">123 William St, New York</span>
      </div>
      <span property="reviewRating" typeof="Rating">
        <span property="ratingValue">4</span>
      </span> stars -
      <b>"<span property="name">A good seafood place.</span>" </b>
      <span property="author" typeof="Person">
        <span property="name">Bob Smith</span>
      </span>
      <div property="publisher" typeof="Organization">
        <meta property="name" content="Washington Times">
      </div>
    </div>
  </body>
</html>

마이크로데이터


 <html>
  <head>
  <title>Legal Seafood</title>
  </head>
  <body>
    <div itemscope itemtype="https://schema.org/Review">
      <div itemprop="itemReviewed" itemscope itemtype="https://schema.org/Restaurant">
        <img itemprop="image" src="https://example.com/photos/1x1/seafood-restaurant.jpg" alt="Legal Seafood"/>
        <span itemprop="name">Legal Seafood</span>
        <span itemprop="servesCuisine">Seafood</span>
        <span itemprop="priceRange">$$$</span>
        <span itemprop="telephone">1234567</span>
        <span itemprop="address">123 William St, New York</span>
      </div>
      <span itemprop="reviewRating" itemscope itemtype="https://schema.org/Rating">
        <span itemprop="ratingValue">4</span>
      </span> stars -
      <b>"<span itemprop="name">A good seafood place.</span>" </b>
      <span itemprop="author" itemscope itemtype="https://schema.org/Person">
        <span itemprop="name">Bob Smith</span>
      </span>
      <div itemprop="publisher" itemscope itemtype="https://schema.org/Organization">
        <meta itemprop="name" content="Washington Times">
      </div>
    </div>
  </body>
</html>

중첩된 리뷰

다음은 Product에 중첩된 리뷰의 예입니다. 예를 복사하여 자체 HTML 페이지에 붙여넣을 수 있습니다.

JSON-LD


<html>
  <head>
    <title>The Catcher in the Rye</title>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org/",
      "@type": "Product",
      "brand": {
        "@type": "Brand",
        "name": "Penguin Books"
      },
      "description": "The Catcher in the Rye is a classic coming-of-age story: an story of teenage alienation, capturing the human need for connection and the bewildering sense of loss as we leave childhood behind.",
      "sku": "9780241984758",
      "mpn": "925872",
      "image": "https://www.example.com/catcher-in-the-rye-book-cover.jpg",
      "name": "The Catcher in the Rye",
      "review": [{
        "@type": "Review",
        "reviewRating": {
          "@type": "Rating",
          "ratingValue": "5"
        },
        "author": {
          "@type": "Person",
          "name": "John Doe"
        }
       },
      {
        "@type": "Review",
        "reviewRating": {
          "@type": "Rating",
          "ratingValue": "1"
        },
        "author": {
          "@type": "Person",
          "name": "Jane Doe"
        }
      }],
      "aggregateRating": {
        "@type": "AggregateRating",
        "ratingValue": "88",
        "bestRating": "100",
        "ratingCount": "20"
      },
      "offers": {
        "@type": "Offer",
        "url": "https://example.com/offers/catcher-in-the-rye",
        "priceCurrency": "USD",
        "price": "5.99",
        "priceValidUntil": "2020-11-05",
        "itemCondition": "https://schema.org/UsedCondition",
        "availability": "https://schema.org/InStock",
        "seller": {
          "@type": "Organization",
          "name": "eBay"
        }
      }
    }
    </script>
  </head>
  <body>
  </body>
</html>

RDFa


 <html>
  <head>
    <title>The Catcher in the Rye</title>
  </head>
    <body>
      <div vocab="https://schema.org/" typeof="Product">
        <div rel="schema:brand">
          <div typeof="schema:Brand">
            <div property="schema:name" content="Penguin"></div>
          </div>
        </div>
        <div property="schema:description" content="The Catcher in the Rye is a classic coming-of-age story: an story of teenage alienation, capturing the human need for connection and the bewildering sense of loss as we leave childhood behind."></div>
        <div property="schema:sku" content="9780241984758"></div>
        <div property="schema:mpn" content="925872"></div>
        <img property="image" src="https://example.com/photos/1x1/catcher-in-the-rye-book-cover.jpg" alt="Catcher in the Rye"/>
        <span property="name">The Catcher in the Rye</span>
        <div property="review" typeof="Review"> Reviews:
          <span property="reviewRating" typeof="Rating">
            <span property="ratingValue">5</span> -
          </span>
          <b>"<span property="name">A masterpiece of literature</span>" </b> by
          <span property="author" typeof="Person">
            <span property="name">John Doe</span></span>, written on
          <meta property="datePublished" content="2006-05-04">4 May 2006
          <div property="reviewBody">I really enjoyed this book. It captures the essential challenge people face as they try make sense of their lives and grow to adulthood.</div>
          <span property="publisher" typeof="Organization">
            <meta property="name" content="Washington Times">
          </span>
        </div><div property="review" typeof="Review">
          <span property="reviewRating" typeof="Rating">
            <span property="ratingValue">1</span> -
          </span>
          <b>"<span property="name">The worst thing I've ever read</span>" </b> by
          <span property="author" typeof="Person">
            <span property="name">Jane Doe</span></span>, written on
          <meta property="datePublished" content="2006-05-10">10 May 2006
          <span property="publisher" typeof="Organization">
            <meta property="name" content="Washington Times">
          </span>
        </div>
        <div rel="schema:aggregateRating">
          <div typeof="schema:AggregateRating">
            <div property="schema:reviewCount" content="89"></div>
            <div property="schema:ratingValue" content="4.4">4,4</div> stars
          </div>
        </div>
        <div rel="schema:offers">
          <div typeof="schema:Offer">
            <div property="schema:price" content="4.99"></div>
            <div property="schema:availability" content="https://schema.org/InStock"></div>
            <div property="schema:priceCurrency" content="GBP"></div>
            <div property="schema:priceValidUntil" datatype="xsd:date" content="2020-11-21"></div>
            <div rel="schema:url" resource="https://example.com/catcher"></div>
            <div property="schema:itemCondition" content="https://schema.org/UsedCondition"></div>
          </div>
        </div>
    </div>
  </body>
</html>

마이크로데이터


 <html>
  <head>
    <title>The Catcher in the Rye</title>
  </head>
  <body>
    <div itemscope itemtype="https://schema.org/Product">
      <div itemprop="brand" itemtype="https://schema.org/Brand" itemscope>
        <meta itemprop="name" content="Penguin" />
      </div>
      <meta itemprop="description" content="The Catcher in the Rye is a classic coming-of-age story: an story of teenage alienation, capturing the human need for connection and the bewildering sense of loss as we leave childhood behind." />
      <meta itemprop="sku" content="0446310786" />
      <meta itemprop="mpn" content="925872" />
      <img itemprop="image" src="https://example.com/photos/1x1/catcher-in-the-rye-book-cover.jpg" alt="Catcher in the Rye"/>
      <span itemprop="name">The Catcher in the Rye</span>
      <div itemprop="review" itemscope itemtype="https://schema.org/Review"> Reviews:
        <span itemprop="reviewRating" itemscope itemtype="https://schema.org/Rating">
          <span itemprop="ratingValue">5</span> -
        </span>
        <b>"<span itemprop="name">A masterpiece of literature</span>" </b> by
        <span itemprop="author" itemscope itemtype="https://schema.org/Person">
          <span itemprop="name">John Doe</span></span>, written on
        <meta itemprop="datePublished" content="2006-05-04">4 May 2006
        <span itemprop="publisher" itemscope itemtype="https://schema.org/Organization">
            <meta itemprop="name" content="Washington Times">
        </span>
      </div><div itemprop="review" itemscope itemtype="https://schema.org/Review">
        <span itemprop="reviewRating" itemscope itemtype="https://schema.org/Rating">
            <span itemprop="ratingValue">1</span> -
        </span>
        <b>"<span itemprop="name">The worst thing I've ever read</span>" </b> by
        <span itemprop="author" itemscope itemtype="https://schema.org/Person">
          <span itemprop="name">Jane Doe</span></span>, written on
        <meta itemprop="datePublished" content="2006-05-10">10 May 2006
        <span itemprop="publisher" itemscope itemtype="https://schema.org/Organization">
          <meta itemprop="name" content="Washington Times">
        </span>
      </div>
      <div itemprop="aggregateRating" itemtype="https://schema.org/AggregateRating" itemscope>
        <meta itemprop="reviewCount" content="89" />
        <span itemprop="ratingValue" content="4.4">4,4</span> stars
      </div>
      <div itemprop="offers" itemtype="https://schema.org/Offer" itemscope>
        <link itemprop="url" href="https://example.com/catcher" />
        <meta itemprop="availability" content="https://schema.org/InStock" />
        <meta itemprop="priceCurrency" content="GBP" />
        <meta itemprop="itemCondition" content="https://schema.org/UsedCondition" />
        <meta itemprop="price" content="4.99" />
        <meta itemprop="priceValidUntil" content="2020-11-21" />
      </div>
    </div>
  </body>
</html>

누계 평점

다음은 누계 평점의 예입니다.

JSON-LD


<html>
  <head>
    <title>Legal Seafood</title>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org/",
      "@type": "AggregateRating",
      "itemReviewed": {
        "@type": "Restaurant",
        "image": "https://www.example.com/seafood-restaurant.jpg",
        "name": "Legal Seafood",
        "servesCuisine": "Seafood",
        "telephone": "1234567",
        "address" : {
          "@type": "PostalAddress",
          "streetAddress": "123 William St",
          "addressLocality": "New York",
          "addressRegion": "NY",
          "postalCode": "10038",
          "addressCountry": "US"
        }
      },
      "ratingValue": "88",
      "bestRating": "100",
      "ratingCount": "20"
    }
    </script>
  </head>
  <body>
  </body>
</html>

RDFa


 <html>
  <head>
    <title>Legal Seafood</title>
  </head>
  <body>
    <div vocab="https://schema.org/" typeof="AggregateRating">
      <div property="itemReviewed" typeof="Restaurant">
        <img property="image" src="https://example.com/photos/1x1/seafood-restaurant.jpg" alt="Legal Seafood"/>
        <span property="name">Legal Seafood</span>
        <span property="servesCuisine">Seafood</span>
        <span property="telephone">1234567</span>
        <span property="address">123 William St, New York</span>
      </div>
      <span property="ratingValue">4.2</span> out of <span property="bestRating">5</span> stars -
      <span property="ratingCount">123</span> votes
    </div>
  </body>
</html>

마이크로데이터


 <html>
  <head>
    <title>Legal Seafood</title>
  </head>
  <body>
    <div itemscope itemtype="https://schema.org/AggregateRating">
      <div itemprop="itemReviewed" itemscope itemtype="https://schema.org/Restaurant">
        <img itemprop="image" src="https://example.com/photos/1x1/seafood-restaurant.jpg" alt="Legal Seafood"/>
        <span itemprop="name">Legal Seafood</span>
        <span itemprop="servesCuisine">Seafood</span>
        <span itemprop="telephone">1234567</span>
        <span itemprop="address">123 William St, New York</span>
      </div>
      <span itemprop="ratingValue">4.2</span> out of <span itemprop="bestRating">5</span> stars -
      <span itemprop="ratingCount">123</span> votes
    </div>
  </body>
</html>

중첩된 누계 평점

다음은 Product에 중첩된 누계 평점의 예입니다. 예를 복사하여 자체 HTML 페이지에 붙여넣을 수 있습니다.

JSON-LD


<html>
  <head>
  <title>Executive Anvil</title>
  <script type="application/ld+json">
  {
    "@context": "https://schema.org/",
    "@type": "Product",
    "name": "Executive Anvil",
    "image": [
      "https://example.com/photos/1x1/photo.jpg",
      "https://example.com/photos/4x3/photo.jpg",
      "https://example.com/photos/16x9/photo.jpg"
     ],
    "brand": {
      "@type": "Brand",
      "name": "ACME"
    },
    "aggregateRating": {
      "@type": "AggregateRating",
      "ratingValue": "4.4",
      "ratingCount": "89"
    },
    "offers": {
      "@type": "AggregateOffer",
      "lowPrice": "119.99",
      "highPrice": "199.99",
      "priceCurrency": "USD"
    }
  }
  </script>
  </head>
  <body>
  </body>
</html>

RDFa


 <html>
  <head>
    <title>Executive Anvil</title>
  </head>
  <body>
    <div vocab="https://schema.org/" typeof="Product">
     <span property="brand" typeof="Brand">ACME</span> <span property="name">Executive Anvil</span>
     <img property="image" src="https://example.com/photos/1x1/anvil_executive.jpg" alt="Executive Anvil logo" />
     <span property="aggregateRating"
           typeof="AggregateRating">
      Average rating: <span property="ratingValue">4.4</span>, based on
      <span property="ratingCount">89</span> reviews
     </span>
     <span property="offers" typeof="AggregateOffer">
      from $<span property="lowPrice">119.99</span> to
      $<span property="highPrice">199.99</span>
      <meta property="priceCurrency" content="USD" />
     </span>
    </div>
  </body>
</html>

마이크로데이터


 <html>
  <head>
    <title>Executive Anvil</title>
  </head>
  <body>
    <div itemscope itemtype="https://schema.org/Product">
      <span itemprop="brand" itemtype="https://schema.org/Brand" itemscope>ACME</span> <span itemprop="name">Executive Anvil</span>
      <img itemprop="image" src="https://example.com/photos/1x1/anvil_executive.jpg" />
      <span itemprop="aggregateRating" itemscope itemtype="https://schema.org/AggregateRating">
        Average rating: <span itemprop="ratingValue">4.4</span>, based on
        <span itemprop="ratingCount">89</span> reviews
      </span>
      <span itemprop="offers" itemscope itemtype="https://schema.org/AggregateOffer">
        from $<span itemprop="lowPrice">119.99</span> to
        $<span itemprop="highPrice">199.99</span>
        <meta itemprop="priceCurrency" content="USD" />
      </span>
    </div>
  </body>
</html>

가이드라인

콘텐츠를 리치 결과로 표시하려면 다음 가이드라인을 따라야 합니다.

기술 가이드라인

  • schema.org/AggregateRating으로 여러 사람의 항목 누계 평가를 마크업하세요. Google은 누계 평점을 리치 스니펫으로 표시할 수 있으며, 특정 유형의 항목인 경우 검색결과의 답변으로 표시할 수 있습니다.
  • schema.org/Book 또는 schema.org/Recipe 같은 다른 schema.org 유형의 마크업에서 리뷰를 중첩하거나 itemReviewed 속성 값으로 schema.org 유형을 사용하여 특정 제품 또는 서비스를 명확하게 언급합니다.
  • 사용자가 마크업된 리뷰 및 평점을 마크업한 페이지에서 즉시 볼 수 있는지 확인합니다. 페이지에 리뷰 콘텐츠가 있다는 것을 사용자가 바로 알 수 있어야 합니다.
  • 카테고리나 항목 목록이 아닌 특정 항목의 리뷰 정보를 제공합니다.
  • 개별 리뷰를 여러 개 포함하는 경우 개별 리뷰의 누계 평점도 포함합니다.
  • 다른 웹사이트의 리뷰를 집계하지 않습니다.
  • 리뷰 스니펫이 지역 비즈니스 또는 조직에 관한 것이라면 다음과 같은 추가 가이드라인을 따라야 합니다.
    • 리뷰 대상이 되는 법인에서 자체적으로 리뷰를 관리하는 경우 LocalBusiness 또는 다른 유형의 구조화된 Organization 데이터를 사용하는 페이지에서는 별표 리뷰 기능을 사용할 수 없습니다. 예를 들어 A 항목에 대한 리뷰가 구조화된 데이터에서 직접 또는 삽입된 타사 위젯을 통해 A 항목의 웹사이트에 배치된 경우가 있습니다.
    • 평점은 사용자로부터 직접 제공받아야 합니다.
    • 지역 비즈니스의 평점 정보를 만들거나 선별하거나 수집하는 데 편집자에게 의존하지 마세요.

구조화된 데이터 유형 정의

검색결과에 구조화된 데이터를 표시하려면 필수 속성이 있어야 합니다. 권장 속성을 통해 구조화된 데이터에 더 많은 정보를 추가하여 더욱 만족스러운 사용자 환경을 제공할 수도 있습니다.

Review

Review의 전체 정의는 schema.org/Review에서 확인할 수 있습니다.

필수 속성
author

Person 또는 Organization

리뷰 작성자입니다. 리뷰 작성자 이름은 유효한 이름이어야 합니다. 예를 들어 '토요일까지 50% 할인'은 유효한 리뷰 작성자 이름이 아닙니다.

이 필드는 100자(영문 기준) 미만이어야 합니다. 100자(영문 기준)를 초과하면 페이지에서 작성자 기반의 리뷰 스니펫을 사용할 수 없습니다.

Google에서 다양한 기능을 갖춘 작성자를 가장 잘 이해할 수 있도록 작성자 마크업 권장사항을 따르는 것이 좋습니다.

itemReviewed

유효한 유형 중 하나

리뷰되는 항목입니다. 그러나 리뷰가 review 속성을 사용하여 다른 schema.org 유형에 중첩된 경우 itemReviewed 속성을 생략할 수 있습니다.

다음은 리뷰 항목의 유효한 유형입니다.

itemReviewed.name

Text

리뷰되는 항목의 이름입니다. 리뷰가 review 속성을 사용하여 다른 schema.org 유형에 중첩된 경우 리뷰되는 항목의 name을 계속 제공해야 합니다. 예:


{
  "@context": "https://schema.org/",
  "@type": "Game",
  "name": "Firefly",
  "review": {
    "@type": "Review",
    "reviewRating": {
      "@type": "Rating",
      "ratingValue": "5"
    },
    "author": {
      "@type": "Person",
      "name": "John Doe"
    }
}
reviewRating

Rating

이 리뷰에 주어진 평점입니다. 평점은 중첩된 Rating 또는 더 세부적인 하위유형일 수 있습니다. 가장 일반적인 하위유형은 AggregateRating입니다.

reviewRating.ratingValue

Number 또는 Text

항목의 품질 평점을 숫자, 백분율, 분수로 나타낸 숫자 값입니다(예: '4', '60%' 또는 '6/10'). 분수 자체나 백분율에 척도가 내포되어 있기에 Google에서는 분수와 백분율의 척도를 파악하고 있습니다. 숫자 값의 기본 척도는 5점이며, 1이 가장 낮은 값이고 5가 가장 높은 값입니다. 다른 척도를 사용하려고 했다면 bestRatingworstRating을 사용하세요.

권장 속성
datePublished

Date

ISO 8601 날짜 형식의 리뷰 게시 날짜입니다.

reviewRating.bestRating

Number

이 평가 시스템에서 허용되는 가장 높은 값입니다. bestRating이 생략된 경우 5점으로 간주됩니다.

reviewRating.worstRating

Number

이 평가 시스템에서 허용되는 가장 낮은 값입니다. worstRating이 생략된 경우 1점으로 간주됩니다.

AggregateRating

AggregateRating의 전체 정의는 schema.org/AggregateRating에서 확인할 수 있습니다.

필수 속성
itemReviewed

유효한 유형 중 하나

평가되는 항목입니다. 그러나 누계 평점이 aggregateRating 속성을 사용하여 다른 schema.org 유형에 중첩된 경우 itemReviewed 속성을 생략할 수 있습니다.

다음은 리뷰 항목의 유효한 유형입니다.

itemReviewed.name

Text

리뷰되는 항목의 이름입니다. 리뷰가 review 속성을 사용하여 다른 schema.org 유형에 중첩된 경우 리뷰되는 항목의 name을 계속 제공해야 합니다. 예:


{
  "@context": "https://schema.org/",
  "@type": "Game",
  "name": "Firefly",
  "aggregateRating": {
    "@type": "AggregateRating",
    "ratingValue": "88",
    "bestRating": "100",
    "ratingCount": "20"
  }
}
ratingCount

Number

사이트의 총 항목 평점 수입니다. ratingCount 또는 reviewCount 중 하나가 필요합니다.

reviewCount

Number

평점과 함께 또는 평점 없이 리뷰를 남긴 사람들의 수를 지정합니다. ratingCount 또는 reviewCount 중 하나가 필요합니다.

ratingValue

Number 또는 Text

항목의 품질 평점을 숫자, 백분율, 분수로 나타낸 숫자 값입니다(예: '4', '60%' 또는 '6/10'). 분수 자체나 백분율에 척도가 내포되어 있기에 Google에서는 분수와 백분율의 척도를 파악하고 있습니다. 숫자 값의 기본 척도는 5점이며, 1이 가장 낮은 값이고 5가 가장 높은 값입니다. 다른 척도를 사용하려고 했다면 bestRatingworstRating을 사용하세요.

권장 속성
bestRating

Number

이 평가 시스템에서 허용되는 가장 높은 값입니다. bestRating이 생략된 경우 5점으로 간주됩니다.

worstRating

Number

이 평가 시스템에서 허용되는 가장 낮은 값입니다. worstRating이 생략된 경우 1점으로 간주됩니다.