प्रोफ़ाइल पेज (ProfilePage) का स्ट्रक्चर्ड डेटा

चर्चा और फ़ोरम की सुविधा का उदाहरण

ProfilePage मार्कअप को किसी भी ऐसी साइट के लिए डिज़ाइन किया गया है जहां क्रिएटर्स (लोग या संगठन) अपने नज़रिया शेयर करते हैं. इस मार्कअप को जोड़ने से, Google Search को ऑनलाइन कम्यूनिटी में पोस्ट करने वाले क्रिएटर्स को समझने में मदद मिलती है. इससे वह खोज के नतीजों में उस कम्यूनिटी का बेहतर कॉन्टेंट दिखा पाता है. इसमें चर्चा और फ़ोरम की सुविधा भी शामिल है.

स्ट्रक्चर्ड डेटा की दूसरी सुविधाएं, ProfilePage मार्कअप वाले पेजों से भी लिंक की जा सकती हैं. उदाहरण के लिए, लेख और रेसिपी वाले स्ट्रक्चर्ड डेटा में लेखक की जानकारी होती है और चर्चा के लिए फ़ोरम और सवाल-जवाब वाला पेज स्ट्रक्चर्ड डेटा में अक्सर कई लेखकों की जानकारी मौजूद होती है.

स्ट्रक्चर्ड डेटा को जोड़ने का तरीका

स्ट्रक्चर्ड डेटा, किसी पेज के बारे में जानकारी देने और पेज के कॉन्टेंट को कैटगरी में बांटने का एक स्टैंडर्ड फ़ॉर्मैट है. अगर आपको स्ट्रक्चर्ड डेटा के बारे में ज़्यादा जानकारी नहीं है, तो स्ट्रक्चर्ड डेटा के काम करने का तरीका देखें.

स्ट्रक्चर्ड डेटा बनाने, उसकी जांच करने, और उसे रिलीज़ करने के बारे में खास जानकारी यहां दी गई है.

  1. ज़रूरी प्रॉपर्टी जोड़ें. जिस फ़ॉर्मैट का इस्तेमाल हो रहा है उसके हिसाब से जानें कि पेज पर स्ट्रक्चर्ड डेटा कहां डालना है.
  2. दिशा-निर्देशों का पालन करें.
  3. ज़्यादा बेहतर नतीजों (रिच रिज़ल्ट) की जांच का इस्तेमाल करके, अपने कोड की पुष्टि करें. साथ ही, सभी ज़रूरी गड़बड़ियों को ठीक करें. ऐसी अन्य समस्याओं को भी ठीक करें जो टूल में फ़्लैग की जा सकती हैं. ऐसा इसलिए, क्योंकि इससे आपके स्ट्रक्चर्ड डेटा की क्वालिटी को बेहतर बनाने में मदद मिल सकती है. हालांकि, ज़्यादा बेहतर नतीजों (रिच रिज़ल्ट) में शामिल होने के लिए, यह ज़रूरी नहीं है.
  4. स्ट्रक्चर्ड डेटा वाले कुछ पेजों को डिप्लॉय करें. इसके बाद, यूआरएल जांचने वाला टूल इस्तेमाल करके देखें कि Google को पेज कैसा दिखेगा. पक्का करें कि Google आपका पेज ऐक्सेस कर सकता हो. साथ ही, देखें कि उस पेज को robots.txt फ़ाइल और noindex टैग से ब्लॉक न किया गया हो या लॉग इन करना ज़रूरी न हो. अगर पेज ठीक लगता है, तो Google को अपने यूआरएल फिर से क्रॉल करने के लिए कहा जा सकता है.
  5. Google को आगे होने वाले बदलावों की जानकारी देने के लिए हमारा सुझाव है कि आप साइटमैप सबमिट करें. Search Console साइटमैप एपीआई की मदद से, इसे ऑटोमेट भी किया जा सकता है.

उदाहरण

यहां मार्कअप वाले प्रोफ़ाइल पेज का उदाहरण दिया गया है:

JSON-LD

<html>
  <head>
    <title>Angelo Huff on Cool Forum Platform</title>
    <script type="application/ld+json">
    {
      "@context": "https://schema.org",
      "@type": "ProfilePage",
      "dateCreated": "2024-12-23T12:34:00-05:00",
      "dateModified": "2024-12-26T14:53:00-05:00",
      "mainEntity": {
        "@type": "Person",
        "name": "Angelo Huff",
        "alternateName": "ahuff23",
        "identifier": "123475623",
        "interactionStatistic": [{
          "@type": "InteractionCounter",
          "interactionType": "https://schema.org/FollowAction",
          "userInteractionCount": 1
        },{
          "@type": "InteractionCounter",
          "interactionType": "https://schema.org/LikeAction",
          "userInteractionCount": 5
        }],
        "agentInteractionStatistic": {
          "@type": "InteractionCounter",
          "interactionType": "https://schema.org/WriteAction",
          "userInteractionCount": 2346
        },
        "description": "Defender of Truth",
        "image": "https://example.com/avatars/ahuff23.jpg",
        "sameAs": [
          "https://www.example.com/real-angelo",
          "https://example.com/profile/therealangelohuff"
        ]
      }
    }
    </script>
  </head>
  <body>
  </body>
</html>
माइक्रोडेटा

<html>
  <head>
    <title>Angelo Huff on Cool Forum Platform</title>
  </head>
  <body itemtype="https://schema.org/ProfilePage" itemscope>
    <meta itemprop="dateCreated" content="2024-12-23T12:34:00-05:00" />
  	<meta itemprop="dateModified" content="2024-12-26T14:53:00-05:00" />
    <div itemprop="mainEntity" itemtype="https://schema.org/Person" itemscope>
      <div><span itemprop="alternateName" id="handle">ahuff23</span> (<span itemprop="name" id="real-name">Angelo Huff</span>)</div>
      <meta itemprop="identifier" content="123475623" />
      <div itemprop="description">Defender of Truth</div>
      <img itemprop="image" src="https://example.com/avatars/ahuff23.jpg" />
      <div>Links: <a itemprop="sameAs" href="https://www.therealangelohuff.com">Home Page</a><br>
                  <a itemprop="sameAs" href="https://example.com/profile/therealangelohuff">Other Social Media Site</a></div>
      <div><span itemprop="interactionStatistic" itemtype="https://schema.org/InteractionCounter" itemscope>
              <span itemprop="userInteractionCount">5</span>
              <span itemprop="interactionType" content="https://schema.org/LikeAction">likes</span>
           </span>,
           <span itemprop="interactionStatistic" itemtype="https://schema.org/InteractionCounter" itemscope>
              <span itemprop="userInteractionCount">1</span>
              <span itemprop="interactionType" content="https://schema.org/FollowAction">follower</span>
           </span>, and
           <span itemprop="agentInteractionStatistic" itemtype="https://schema.org/InteractionCounter" itemscope>
              <span itemprop="userInteractionCount">2346</span>
              <span itemprop="interactionType" content="https://schema.org/WriteAction">posts</span>
           </span>
       </div>
    </div>
  </body>
</html>

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

अपने प्रोफ़ाइल पेज के स्ट्रक्चर्ड डेटा को Google Search में इस्तेमाल करने के लिए, आपको इन दिशा-निर्देशों का पालन करना होगा:

कॉन्टेंट के लिए दिशा-निर्देश

  • पेज पर मुख्य तौर पर, वेबसाइट से जुड़ा कोई एक व्यक्ति या संगठन होना चाहिए. यहां प्रोफ़ाइल पेजों के कुछ उदाहरण दिए गए हैं:

    सही इस्तेमाल के उदाहरण:

    • किसी फ़ोरम या सोशल मीडिया साइट पर मौजूद उपयोगकर्ता का प्रोफ़ाइल पेज
    • किसी समाचार साइट पर मौजूद लेखक का पेज
    • ब्लॉग साइट पर "मेरे बारे में जानकारी" पेज
    • कंपनी की वेबसाइट पर कर्मचारी का पेज

    गलत इस्तेमाल के उदाहरण:

    • स्टोर का मुख्य होम पेज (आम तौर पर, बिना प्रोफ़ाइल वाली बहुत सारी जानकारी मौजूद होती है)
    • संगठन की समीक्षा करने वाली साइट (संगठन, वेबसाइट से नहीं जुड़ा है)

तकनीकी दिशा-निर्देश

अगर प्रोफ़ाइल पेज में क्रिएटर की हाल की गतिविधि भी शामिल है, तो पूरे कॉन्टेंट और मार्कअप के साथ पेज का रेफ़रंस देने के लिए, उन ऑब्जेक्ट पर यूआरएल का इस्तेमाल करके मार्कअप शामिल करें. उदाहरण के लिए, यह एक तरह का मार्कअप स्ट्रक्चर हो सकता है:

{
  "@context": "https://schema.org",
  "@type": "ProfilePage",
  "mainEntity": {
    "@id": "#main-author",
    "@type": "Person",
    "name": "Marlo Smith"
  },
  "hasPart": [{
    "@type": "Article",
    "headline": "Things to see in NJ",
    "url": "https://example.com/things-to-see-nj",
    "datePublished": "2014-02-23T18:34:00Z",
    "author": { "@id": "#main-author" }
  }]
}

अलग-अलग तरह के स्ट्रक्चर्ड डेटा की जानकारी

खोज के नतीजों में दिखाने के लिए, आपको अपने स्ट्रक्चर्ड डेटा में ज़रूरी प्रॉपर्टी शामिल करनी होंगी. अपने प्रोफ़ाइल पेजों के बारे में ज़्यादा जानकारी जोड़ने के लिए, आपके पास सुझाई गई प्रॉपर्टी भी शामिल करने का विकल्प होता है. इससे लोगों को बेहतर अनुभव दिया जा सकता है.

ProfilePage

ProfilePage की पूरी जानकारी, schema.org/ProfilePage पर मौजूद है.

ज़रूरी प्रॉपर्टी
mainEntity

Person या Organization

वह व्यक्ति या संगठन जिसके बारे में यह प्रोफ़ाइल पेज है. इससे पता चलता है कि इस पेज का मुख्य मकसद, इस इकाई के बारे में जानकारी देना है.

अगर जानकारी उपलब्ध है, तो सही जानकारी का इस्तेमाल करें. इसका मतलब है कि अगर आपको पता है कि पेज किसी व्यक्ति का है या संगठन का. अगर यह जानकारी मौजूद नहीं है, तो यह डिफ़ॉल्ट रूप से Person पर सेट होता है. उदाहरण के लिए, अगर यह खाता टाइप की जानकारी नहीं है.

सुझाई गई प्रॉपर्टी
dateCreated

DateTime

अगर लागू हो, तो आईएसओ 8601 तारीख फ़ॉर्मैट में प्रोफ़ाइल बनाने की तारीख और समय.

dateModified

DateTime

अगर लागू हो, तो प्रोफ़ाइल में मौजूद जानकारी में बदलाव किए जाने की तारीख और समय. यह जानकारी आईएसओ 8601 तारीख फ़ॉर्मैट में होनी चाहिए. आम तौर पर, इससे प्रोफ़ाइल के ऐसे मेटाडेटा के बारे में पता चलता है जिनमें लोगों ने बदलाव किया है. उदाहरण के लिए, जिन जगहों पर इस प्रोफ़ाइल का रेफ़रंस दिया गया है उनके लिए अतिरिक्त आउटलिंक जोड़ने पर, इसे बदलाव नहीं माना जाएगा.

Person या Organization

schema.org/Person और schema.org/Organization, दोनों ऐसी सामान्य प्रॉपर्टी शेयर करते हैं जिनका इस्तेमाल Google करता है.

ज़रूरी प्रॉपर्टी
name

Text

व्यक्ति या संगठन की पहचान करने का मुख्य तरीका. हमारा सुझाव है कि आप असली नामों के लिए इस फ़ील्ड का इस्तेमाल करें. साथ ही, सोशल मीडिया हैंडल के लिए alternateName का इस्तेमाल करें. हालांकि, अगर आपकी साइट पर उस व्यक्ति की पहचान सिर्फ़ इसी तरीके से की जाती है, तो सोशल मीडिया हैंडल के बारे में बताने के लिए इस फ़ील्ड का इस्तेमाल किया जा सकता है.

सुझाई गई प्रॉपर्टी
agentInteractionStatistic

InteractionCounter

लागू होने पर, प्रोफ़ाइल पेज की इकाई के व्यवहार से जुड़े उपयोगकर्ता के आंकड़े.

Google इन interactionTypes की पहचान करता है:

alternateName

Text

अगर लागू हो, तो एक और सार्वजनिक आइडेंटिफ़ायर. उदाहरण के लिए, अगर name फ़ील्ड में किसी व्यक्ति के असली नाम का इस्तेमाल किया गया है, तो सोशल मीडिया हैंडल की जानकारी दें.

description

Text

लागू होने पर, उपयोगकर्ता की बायलाइन या लागू क्रेडेंशियल.

identifier

Text

आपकी साइट में इस्तेमाल किया जाने वाला कोई भी यूनीक आइडेंटिफ़ायर, अगर लागू हो. यह एक इंटरनल डेटाबेस आईडी हो सकता है. आपकी साइट इसका इस्तेमाल किसी उपयोगकर्ता की पहचान करने के लिए करती है, भले ही उनके सोशल मीडिया हैंडल में बदलाव हो रहा हो.

image

URL या ImageObject

क्रिएटर की प्रोफ़ाइल इमेज का यूआरएल या ImageObject, अगर लागू हो. अगर कोई इमेज नहीं है, तो इस फ़ील्ड में कोई डिफ़ॉल्ट इमेज, आइकॉन या प्लेसहोल्डर इमेज शामिल न करें.

इमेज के बारे में दूसरे दिशा-निर्देश:

  • इमेज के यूआरएल ऐसे होने चाहिए जिन्हें क्रॉल और इंडेक्स किया जा सके. यूआरएल जांचने वाले टूल का इस्तेमाल करके, यह पता करें कि Google आपकी साइट के पेज ऐक्सेस कर पा रहा है या नहीं.
  • इमेज ऐसी होनी चाहिए जो मार्कअप किए गए कॉन्टेंट के बारे में बताती हों.
  • इमेज का उस फ़ाइल फ़ॉर्मैट में होना ज़रूरी है जो Google Images के साथ काम करता हो.
  • सबसे अच्छे नतीजों के लिए, हम हाई रिज़ॉल्यूशन वाली ऐसी कई इमेज (चौड़ाई और ऊंचाई को गुणा करने के बाद कम से कम 50,000 पिक्सल) उपलब्ध कराने का सुझाव देते हैं जिनका आसपेक्ट रेशियो (चौड़ाई-ऊंचाई का अनुपात) 16x9, 4x3, और 1x1 हो.

उदाहरण के लिए:

"image": [
  "https://example.com/photos/1x1/photo.jpg",
  "https://example.com/photos/4x3/photo.jpg",
  "https://example.com/photos/16x9/photo.jpg"
]
interactionStatistic

InteractionCounter

लागू होने पर, प्रोफ़ाइल पेज की इकाई पर लागू किए गए उपयोगकर्ता के आंकड़े. सिर्फ़ उस प्लैटफ़ॉर्म के बारे में आंकड़े शामिल करें जिस पर प्रोफ़ाइल पेज होस्ट किया गया है. इसमें यह जानकारी न दें कि क्रिएटर के होम पेज पर भी 1,00,000 फ़ॉलोअर हैं.

Google इन interactionTypes की पहचान करता है:

sameAs

URL

प्रोफ़ाइल की अन्य बाहरी प्रोफ़ाइलों या होम पेजों का यूआरएल, अगर लागू हो.

Monitor rich results with Search Console

Search Console is a tool that helps you monitor how your pages perform in Google Search. You don't have to sign up for Search Console to be included in Google Search results, but it can help you understand and improve how Google sees your site. We recommend checking Search Console in the following cases:

  1. After deploying structured data for the first time
  2. After releasing new templates or updating your code
  3. Analyzing traffic periodically

After deploying structured data for the first time

After Google has indexed your pages, look for issues using the relevant Rich result status report. Ideally, there will be an increase of valid items, and no increase in invalid items. If you find issues in your structured data:

  1. Fix the invalid items.
  2. Inspect a live URL to check if the issue persists.
  3. Request validation using the status report.

After releasing new templates or updating your code

When you make significant changes to your website, monitor for increases in structured data invalid items.
  • If you see an increase in invalid items, perhaps you rolled out a new template that doesn't work, or your site interacts with the existing template in a new and bad way.
  • If you see a decrease in valid items (not matched by an increase in invalid items), perhaps you are no longer embedding structured data in your pages. Use the URL Inspection tool to learn what is causing the issue.

Analyzing traffic periodically

Analyze your Google Search traffic using the Performance Report. The data will show you how often your page appears as a rich result in Search, how often users click on it and what is the average position you appear on search results. You can also automatically pull these results with the Search Console API.

समस्याएं हल करना

अगर आपको स्ट्रक्चर्ड डेटा लागू करने या डीबग करने में कोई समस्या आ रही है, तो यहां कुछ ऐसे रिसॉर्स दिए गए हैं जिनसे आपको मदद मिल सकती है.