Koleksiyonlar ile düzeninizi koruyun İçeriği tercihlerinize göre kaydedin ve kategorilere ayırın.

Yorum snippet'i

Yorum snippet'i, genellikle çok sayıda yorumcunun birleşik değerlendirme puanlarının ortalaması olan, bir yorum web sitesindeki yorumdan veya değerlendirmeden yapılmış kısa bir alıntıdır. Google geçerli yorum veya puan işaretlemesi bulduğunda, yorumlardan ya da puanlardan gelen yıldızları ve diğer özet bilgileri içeren bir zengin snippet gösterebilir. Yorum metnine ek olarak puan, sayısal ölçekte (1-5 gibi) açıklanan bir değerlendirmedir. Yorum snippet'leri zengin sonuçlarda veya Google Bilgi Panelleri'nde gösterilebilir. Aşağıdaki içerik türleri (ve alt türleri) için puan sağlayabilirsiniz:

Google Arama'daki yorum snippet'i

Google aşağıdaki schema.org türleriyle (ve alt türleriyle) ilgili yorumları da desteklemektedir:

Örnekler

Review yapılandırılmış verilerini bir sayfaya ekleyebilmenizin birkaç yolu vardır:

  • Bir basit yorum ekleyin.
  • review özelliğini kullanarak bir yorumu başka bir schema.org türü ile iç içe yerleştirin.
  • Toplam puan ekleyin. İşaretlenmiş içeriğiniz hem bir yazar hem de bir yorum tarihi içeriyorsa bireysel yorumların puanlarını çıkarabilirsiniz. Toplu yorumlar için zengin snippet'in görüntüleyeceği ortalama puanı sağlamanız gerekir.
  • aggregateRating özelliğini kullanarak toplam puanları başka bir schema.org türü ile iç içe yerleştirin.

Basit yorum

Basit bir yorum örneğini burada bulabilirsiniz.

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>

Mikro veri


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

İç içe yerleştirilmiş yorum

Burada, Product ile iç içe yerleştirilmiş bir yorum örneğini bulabilirsiniz. Örneği kopyalayıp kendi HTML sayfanıza yapıştırabilirsiniz.

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>

Mikro veri


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

Toplam puan

Toplam puan örneğini burada bulabilirsiniz.

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>

Mikro veri


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

İç içe yerleştirilmiş toplam puan

Product ile iç içe yerleştirilmiş bir toplam puan örneğini burada bulabilirsiniz. Örneği kopyalayıp kendi HTML sayfanıza yapıştırabilirsiniz.

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>

Mikro veri


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

Yönergeler

İçeriğinizin zengin sonuç olarak görünmeye uygun olması için bu yönergelere uyması gerekir.

Teknik yönergeler

  • Bir öğenin birçok kişi tarafından yapılan toplu değerlendirmesini schema.org/AggregateRating ile işaretlediğinizden emin olun. Google, toplam puanları zengin snippet'ler olarak veya belirli öğe türleri için arama sonuçlarında yanıt olarak görüntüleyebilir.
  • Yorumu schema.org/Book veya schema.org/Recipe gibi farklı bir schema.org türünün işaretlemesi içine yerleştirerek ya da bir schema.org türünü itemReviewed özelliğinin bir değeri olarak kullanarak belirli bir ürüne veya hizmete açık bir şekilde başvuruda bulunun.
  • İşaretlediğiniz yorumların ve puanların, işaretlenen sayfadaki kullanıcılar tarafından halihazırda kullanılabildiğinden emin olun. Sayfanın yorum içeriğine sahip olduğu kullanıcılar tarafından hemen anlaşılmalıdır.
  • Bir kategori veya öğe listesi hakkında değil, belirli bir öğe hakkında yorum bilgisi sağlayın.
  • Birden fazla ayrı ayrı yorum eklerseniz bu bağımsız yorumların toplam puanını da ekleyin.
  • Diğer web sitelerinden yorumları toplamayın.
  • Yorum snippet'i yerel işletmeyle veya bir kuruluşla ilgiliyse aşağıdaki ek yönergeleri uygulamanız gerekir:
    • Yorumlanan kurum veya kişi kendisiyle ilgili yorumları kontrol ediyorsa LocalBusiness veya diğer Organization yapılandırılmış verilerin olduğu sayfalarda yıldızlı yorum özelliği kullanılamaz. Örneğin, A öğesi hakkındaki bir yorum A öğesinin web sitesine yerleştirilmişse (doğrudan yapılandırılmış verilerinin içine veya yerleşik bir üçüncü taraf widget'i üzerinden).
    • Puanlar doğrudan kullanıcılardan alınmalıdır.
    • Yerel işletmeler için puan bilgilerinin oluşturulması, seçilmesi veya derlenmesi amacıyla gerçek editörler kullanmayın.

Yapılandırılmış veri türü tanımları

Yapılandırılmış verilerinizin arama sonuçlarında görüntülenmesi için gerekli özellikleri eklemeniz gerekir. Yapılandırılmış verilerinize daha fazla bilgi ekleyerek daha iyi bir kullanıcı deneyimi sağlamak için önerilen özellikleri de dahil edebilirsiniz.

Review

Review öğesinin tam tanımını schema.org/Review adresinde bulabilirsiniz.

Zorunlu özellikler
author

Person veya Organization

Yorumu yazan kişi. Yorumcunun adı, geçerli bir ad olmalıdır. Örneğin, "Cumartesi'ye kadar %50 indirim" geçerli bir yorumcu adı değildir.

Bu alan 100 karakterden kısa olmalıdır. 100 karakterden uzunsa sayfanız yazara dayalı yorum snippet'i için uygun olmaz.

Google'ın çeşitli özellikler kullanarak yazarları en iyi şekilde anlamasına yardımcı olmak için yazar işaretlemesiyle ilgili en iyi uygulamalara uymaya dikkat edin.

itemReviewed

Geçerli türlerden biri

Hakkında yorum yapılan öğe. Bununla birlikte, yorum, review özelliği kullanılarak başka bir schema.org türü ile iç içe yerleştirilmişse itemReviewed özelliğini çıkarabilirsiniz.

Hakkında yorum yapılan öğe için geçerli türler şunlardır:

itemReviewed.name

Text

Hakkında yorum yapılan öğenin adı. Yorum, review özelliği kullanılarak başka bir schema.org türü ile iç içe yerleştirilmişse yine de hakkında yorum yapılan öğenin name özelliğini sağlamanız gerekir. Örneğin:


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

Rating

Bu yorumda verilen puan. Yorum, iç içe yerleştirilmiş bir Rating veya daha belirgin bir alt tür olabilir. En tipik alt tür, AggregateRating türüdür.

reviewRating.ratingValue

Number veya Text

Öğe için sayısal kalite puanı. Bu puan; sayı, kesir veya yüzde şeklinde olabilir (ör. "4", "%60" veya "6/10"). Google, kesir ve yüzde ölçeğini anlar. Zira ölçek, kesirin kendisinde veya yüzdede ima edilir. Sayılar için varsayılan olarak 5 puanlı bir ölçek kullanılır. Burada 1 en düşük, 5 ise en yüksek değerdir. Başka bir ölçek isterseniz bestRating ve worstRating kullanın.

Önerilen özellikler
datePublished

Date

ISO 8601 tarih biçiminde, yorumun yayınlandığı tarih.

reviewRating.bestRating

Number

Bu derecelendirme sisteminde izin verilen en yüksek değer. bestRating çıkarılırsa değerin 5 olduğu varsayılır.

reviewRating.worstRating

Number

Bu derecelendirme sisteminde izin verilen en düşük değer. worstRating çıkarılırsa değerin 1 olduğu varsayılır.

AggregateRating

AggregateRating öğesinin tam tanımını schema.org/AggregateRating adresinde bulabilirsiniz.

Zorunlu özellikler
itemReviewed

Geçerli türlerden biri

Değerlendirilmekte olan öğe. Bununla birlikte, toplam puan aggregateRating özelliği kullanılarak başka bir schema.org türü ile iç içe yerleştirilirse itemReviewed özelliğini çıkarabilirsiniz.

Hakkında yorum yapılan öğe için geçerli türler şunlardır:

itemReviewed.name

Text

Hakkında yorum yapılan öğenin adı. Yorum, review özelliği kullanılarak başka bir schema.org türü ile iç içe yerleştirilmişse yine de hakkında yorum yapılan öğenin name özelliğini sağlamanız gerekir. Örneğin:


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

Number

Sitenizdeki öğe için toplam değerlendirme sayısı. En az bir ratingCount veya reviewCount zorunludur.

reviewCount

Number

Beraberinde bir puan sağlayarak veya sağlamayarak yorum yapan kişilerin sayısını belirtir. En az bir ratingCount veya reviewCount zorunludur.

ratingValue

Number veya Text

Öğe için sayısal kalite puanı. Bu puan; sayı, kesir veya yüzde şeklinde olabilir (ör. "4", "%60" veya "6/10"). Google, kesir ve yüzde ölçeğini anlar. Zira ölçek, kesirin kendisinde veya yüzdede ima edilir. Sayılar için varsayılan olarak 5 puanlı bir ölçek kullanılır. Burada 1 en düşük, 5 ise en yüksek değerdir. Başka bir ölçek isterseniz bestRating ve worstRating kullanın.

Önerilen özellikler
bestRating

Number

Bu derecelendirme sisteminde izin verilen en yüksek değer. bestRating çıkarılırsa değerin 5 olduğu varsayılır.

worstRating

Number

Bu derecelendirme sisteminde izin verilen en düşük değer. worstRating çıkarılırsa değerin 1 olduğu varsayılır.