Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7909545
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T12:28:00+00:00 2026-06-03T12:28:00+00:00

hello I have a page ( http://schema.org/WebPage ) that contains a review ( http://schema.org/Review

  • 0

hello I have a page ( http://schema.org/WebPage ) that contains a review ( http://schema.org/Review )

the question are:

  • how to deal with duplicate contents?
  • is correct making elements belong to two or more scopes?
  • how to do this, repeating text twice?
  • or i should avoid multiple references?

example:

<html itemscope itemtype="http://schema.org/WebPage">
    <meta name="description" content="_________" itemprop="description">
    ...
    <div itemscope itemtype="http://schema.org/Review">
        <div itemprop="description">_________</div>
    </div>
    ...
</html>

the description belongs to the Review AND to the WebPage, so… what I should write in this case?

(note: in the previous example the string “__” is the same text paragraph, repeated twice)


EDIT:

can this be a solution? (the html5 spec doesn’t talk about this, but defines the itemref attribute)

<html itemscope itemtype="http://schema.org/WebPage" id="WEBPAGE">
    ...
    <div itemscope itemtype="http://schema.org/Review" id="REVIEW">
        <div itemprop="description" itemref="WEBPAGE REVIEW">_________</div>
    </div>
    ...
</html>

FEEL FREE TO IMPROVE THE QUESTION!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T12:28:01+00:00Added an answer on June 3, 2026 at 12:28 pm

    Quick answers

    • how to deal with duplicate contents?
      • use the attribute itemref
    • is correct making elements belong to two or more scopes?
      • Yes, this is what you use itemref for
    • how to do this, repeating text twice?
      • No, you only need to refer to the element
    • or i should avoid multiple references?
      • I don’t see any reason why you don’t wanna use multiple references

    Some Examples

    Include by wrapping

    When you use the itemref attribute you include all property contained within the referred element to a different scope.

    <body itemscope itemtype="http://schema.org/WebPage" itemref="wrapper">
        ...
        <div itemscope itemtype="http://schema.org/Review">
            ...
            <div id="wrapper">
                <div itemprop="description">_________</div>
    
                <div itemprop="some-other-property">_________</div>
            </div>
            ...
        </div>
        ...
    </body>
    

    Include by wrapping – a different example

    Lets say you have a product with a few different offers outside the scope.

    <div itemscope itemtype="http://schema.org/Product" itemref="wrapper">
        ...
    </div>
    
    <div id="wrapper">
        <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
            ...
        </div>
    
        <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
            ...
        </div>
    
        <div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
            ...
        </div>
    </div>
    

    Include a specific property

    You might only wish to include one specific property outside the scope, to do this we can simply set the id directly on the targeted element with the itemprop specified.

    <body itemscope itemtype="http://schema.org/WebPage" itemref="target">
        ...
        <div itemscope itemtype="http://schema.org/Review">
            <div id="target" itemprop="description">_________</div>
        </div>
        ...
    </body>
    

    Multiple references

    Maybe a wrapper isn’t applicable, then you can use multiple references. You separate them simply by space.

    <body itemscope itemtype="http://schema.org/WebPage" itemref="desc name">
        ...
        <div itemscope itemtype="http://schema.org/Review">
            <div id="desc" itemprop="description">_________</div>
    
            <div id="name" itemprop="name">_________</div>
        </div>
        ...
    </body>
    

    Source

    See also thees pages for some other explanations and examples:
    http://www.w3.org/TR/2011/WD-microdata-20110405/
    http://www.whatwg.org/specs/web-apps/current-work/multipage/microdata.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have such a link in JSP page with encoding big5 http://hello/world?name=婀ㄉ And when
Hello i have error when i am forwarding page without parameter. that is happen
Hello i have a JSP page that contain a form, i want to validate
Let's say I have this sample: page = <html><body><h1 class='foo'></h1><p class='foo'>hello people<a href='http://'>hello world</a></p></body></html>
Hello I have a word press options page and I want to make it
hello i have this question i was trying to find a way to call
hello I have my code that connects to my ftp server $conn_id = ftp_connect($ftp_server);
Hello I have a datatable that I would like to filter with a single
Hello mates i have a page View All Applicants.aspx with gridview and a link
Hello i have this grid working fine here: http://tourscript.com/jqueryasp/default2.asp i start adding a pagination

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.