Schema.org - JSON-LD - Where to Place?

schema.orgJson Ld

schema.org Problem Overview


I am looking to use JSON-LD for schema on a website. (Schema meaning schema.org data.) I know how to write the data but my question is is there a prefered location in my code to insert this data? In other words, should the JSON-LD always be in the head, body, etc.?

schema.org Solutions


Solution 1 - schema.org

The data can be placed anywhere. From Google's documentation:

> The data, enclosed within the <script type="application/ld+json"> ... > </script> tags as shown in the examples below, may be placed in either > the <HEAD> or <BODY> region of the page that displays that event.

You can also use data dynamically fetched using AJAX:

> JSON-LD markup inserted by Javascript that runs upon initial page load > can be recognized.

Update (as pointed by Antony in the comments)

The latest documentation says: > [JSON-LD is a] JavaScript notation embedded in a

Solution 2 - schema.org

From the perspectives of Schema.org, JSON-LD, and the possibly extracted RDF, it should not matter. The data is the same, no matter from where in the document it got extracted.

From the perspective of HTML5:

If it’s data about your page (or what this page is about), you could place the script element in the head, as the head element

> […] represents a collection of metadata for the Document

But of course it would not be wrong to use body for this instead. It’s just that you shouldn’t use head for data that is not about your page or what it represents.

Solution 3 - schema.org

if you choose to insert in the <body>, you got to do it like this:

<p class="companyName" vocab="http://schema.org/" resource="#manu" typeof="Organization">
   <span property="name">ShopTech Media</span>
   <img property="logo" src="https://yoursite.com/logo.png" />
   <a property="url" href="http://www.yoursite.com">Home page</a>
</p>
<p typeof="contactPoint">
  <span property="contactType">Customer Service:</span>
<span property="telephone">+45-xxxxxxx</span>
</p>

below is the script code to insert your structured data in the <head> tag

<script type="application/ld+json"> 
{
  "@context": "https://schema.org",
  "@type": "Organization",
  "url": "http://www.shoptech.media",
  "logo": "https://shoptech.media/wp-content/uploads/2019/08/cropped-logo-sm.png",
  "contactPoint": [{
    "@type": "ContactPoint",
    "telephone": "+45-65711114",
    "contactType": "customer service"
  }]
}
</script>

check the documentation at general structured data guideline

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionL84View Question on Stackoverflow
Solution 1 - schema.orgDheeraj VepakommaView Answer on Stackoverflow
Solution 2 - schema.orgunorView Answer on Stackoverflow
Solution 3 - schema.orgRichard RosarioView Answer on Stackoverflow