लेख (Article, NewsArticle, BlogPosting) का स्ट्रक्चर्ड डेटा

समाचार, ब्लॉग, और खेल-कूद से जुड़े लेख वाले पेजों में Article स्ट्रक्चर्ड डेटा जोड़ने से, Google आपके वेब पेज को बेहतर तरीके से समझ पाता है. साथ ही, इससे Google Search और अन्य प्रॉपर्टी (जैसे, Google News और Google Assistant) पर खोज के नतीजों में, लेख के लिए टाइटल के टेक्स्ट, इमेज, और तारीख की जानकारी को बेहतर तरीके से दिखाने में मदद मिलती है. Google News की, टॉप स्टोरीज़ जैसी सुविधाओं पर दिखने के लिए, मार्कअप से जुड़ी कोई ज़रूरी शर्त नहीं है. हालांकि, Google को अपने कॉन्टेंट के बारे में साफ़ तौर पर बताने के लिए Article का इस्तेमाल किया जा सकता है. उदाहरण के लिए, इस बारे में जानकारी दी जा सकती है कि यह एक समाचार लेख है, इसके लेखक कौन हैं या लेख का शीर्षक क्या है.

लेख का ज़्यादा बेहतर नतीजा (रिच रिज़ल्ट)

उदाहरण

यहां, Article स्ट्रक्चर्ड डेटा वाले पेज का उदाहरण दिया गया है.

JSON-LD


<html>
  <head>
    <title>Title of a News Article</title>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "NewsArticle",
      "headline": "Title of a News Article",
      "image": [
        "https://example.com/photos/1x1/photo.jpg",
        "https://example.com/photos/4x3/photo.jpg",
        "https://example.com/photos/16x9/photo.jpg"
       ],
      "datePublished": "2024-01-05T08:00:00+08:00",
      "dateModified": "2024-02-05T09:20:00+08:00",
      "author": [{
          "@type": "Person",
          "name": "Jane Doe",
          "url": "https://example.com/profile/janedoe123"
        },{
          "@type": "Person",
          "name": "John Doe",
          "url": "https://example.com/profile/johndoe123"
      }]
    }
    </script>
  </head>
  <body>
  </body>
</html>

माइक्रोडेटा


<html>
  <head>
    <title>Title of a News Article</title>
  </head>
  <body>
    <div itemscope itemtype="https://schema.org/NewsArticle">
      <div itemprop="headline">Title of News Article</div>
      <meta itemprop="image" content="https://example.com/photos/1x1/photo.jpg" />
      <meta itemprop="image" content="https://example.com/photos/4x3/photo.jpg" />
      <img itemprop="image" src="https://example.com/photos/16x9/photo.jpg" />
      <div>
        <span itemprop="datePublished" content="2024-01-05T08:00:00+08:00">
          January 5, 2024 at 8:00am
        </span>
        (last modified
        <span itemprop="dateModified" content="2024-02-05T09:20:00+08:00">
          February 5, 2024 at 9:20am
        </span>
        )
      </div>
      <div>
        by
        <span itemprop="author" itemscope itemtype="https://schema.org/Person">
          <a itemprop="url" href="https://example.com/profile/janedoe123">
            <span itemprop="name">Jane Doe</span>
          </a>
        </span>
        and
        <span itemprop="author" itemscope itemtype="https://schema.org/Person">
          <a itemprop="url" href="https://example.com/profile/johndoe123">
            <span itemprop="name">John Doe</span>
          </a>
        </span>
      </div>
    </div>
  </body>
</html>

How to add structured data

Structured data is a standardized format for providing information about a page and classifying the page content. If you're new to structured data, you can learn more about how structured data works.

Here's an overview of how to build, test, and release structured data.

  1. Add as many recommended properties that apply to your web page. There are no required properties; instead, add the properties that apply to your content. Based on the format you're using, learn where to insert structured data on the page.
  2. Follow the guidelines.
  3. Validate your code using the Rich Results Test and fix any critical errors. Consider also fixing any non-critical issues that may be flagged in the tool, as they can help improve the quality of your structured data (however, this isn't necessary to be eligible for rich results).
  4. Deploy a few pages that include your structured data and use the URL Inspection tool to test how Google sees the page. Be sure that your page is accessible to Google and not blocked by a robots.txt file, the noindex tag, or login requirements. If the page looks okay, you can ask Google to recrawl your URLs.
  5. To keep Google informed of future changes, we recommend that you submit a sitemap. You can automate this with the Search Console Sitemap API.

दिशा-निर्देश

स्ट्रक्चर्ड डेटा को Google Search के नतीजों में शामिल किया जाए, इसके लिए इन दिशा-निर्देशों का पालन करना ज़रूरी है.