Skip to content

Instantly share code, notes, and snippets.

@jeffochoa

jeffochoa/1.html Secret

Last active April 29, 2019 19:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeffochoa/c83c734eae0be504129f35b23977fa50 to your computer and use it in GitHub Desktop.
Save jeffochoa/c83c734eae0be504129f35b23977fa50 to your computer and use it in GitHub Desktop.
Improve your SEO using structured data objects (JSON-LD)
<!-- A list of the issues for a single volume of a given periodical. -->
<div>
<h1>The Lancet</h1>
<p>Volume 376, July 2010-December 2010</p>
<p>Published by Elsevier
<ul>
<li>ISSN: 0140-6736</li>
</ul>
<h3>Issues:</h3>
<ul>
<li>No. 9734 Jul 3, 2010 p 1-68</li>
<li>No. 9735 Jul 10, 2010 p 69-140</li>
</ul>
</div>
<!-- A list of the issues for a single volume of a given periodical. -->
<div itemscope itemtype="http://schema.org/Periodical">
<h1 itemprop="name">The Lancet</h1>
<p>Volume 376, July 2010-December 2010</p>
<p>Published by <span itemprop="publisher">Elsevier</span>
<ul>
<li>ISSN: <span itemprop="issn">0140-6736</span></li>
</ul>
<h3>Issues:</h3>
<div itemprop="hasPart" itemscope itemtype="http://schema.org/PublicationVolume" itemid="#vol376">
<meta itemprop="volumeNumber" content="376">
<ul>
<li itemprop="hasPart" itemscope itemtype="http://schema.org/PublicationIssue" itemid="#iss9734">No.
<span itemprop="issueNumber">9734</span>
<time datetime="2010-07-03" itemprop="datePublished">Jul 3, 2010</time>
p <span itemprop="pageStart">1</span>-<span itemprop="pageEnd">68</span>
</li>
<li itemprop="hasPart" itemscope itemtype="http://schema.org/PublicationIssue" itemid="#iss9735">No.
<span itemprop="issueNumber">9735</span>
<time datetime="2010-07-03" itemprop="datePublished">Jul 10, 2010</time>
p <span itemprop="pageStart">69</span>-<span itemprop="pageEnd">140</span>
</li>
</ul>
</div>
</div>
<!-- A list of the issues for a single volume of a given periodical. -->
<div vocab="http://schema.org/" typeof="Periodical">
<h1 property="name">The Lancet</h1>
<p>Volume 376, July 2010-December 2010</p>
<p>Published by <span property="publisher">Elsevier</span>
<ul>
<li>ISSN: <span property="issn">0140-6736</span></li>
</ul>
<h3>Issues:</h3>
<div property="hasPart" typeof="PublicationVolume" resource="#vol376">
<meta property="volumeNumber" content="376">
<ul>
<li property="hasPart" typeof="PublicationIssue" resource="#issue9734">No.
<span property="issueNumber">9734</span>
<time datetime="2010-07-03" property="datePublished">Jul 3, 2010</time>
p <span property="pageStart">1</span>-<span property="pageEnd">68</span>
</li>
<li property="hasPart" typeof="PublicationIssue" resource="#issue9735">No.
<span property="issueNumber">9735</span>
<time datetime="2010-07-03" property="datePublished">Jul 10, 2010</time>
p <span property="pageStart">69</span>-<span property="pageEnd">140</span>
</li>
</ul>
</div>
</div>
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Periodical",
"issn": "0140-6736",
"hasPart": {
"@id": "vol376",
"@type": "PublicationVolume",
"volumeNumber": "376",
"hasPart": [
{
"@id": "issue9735",
"@type": "PublicationIssue",
"datePublished": "2010-07-03",
"pageEnd": "140",
"pageStart": "69",
"issueNumber": "9735"
},
{
"@id": "issue9734",
"@type": "PublicationIssue",
"datePublished": "2010-07-03",
"pageEnd": "68",
"pageStart": "1",
"issueNumber": "9734"
}
]
},
"name": "The Lancet",
"publisher": "Elsevier"
}
</script>
{
"@context":"http://schema.org",
"datePublished":"2016-04-29T16:20:00+01:00",
"dateModified":"2017-01-14T13:16:40+00:00",
"description":"Matching its blockbuster scale and spectacle with the smarts of a great, grown-up thriller, Captain America: Civil War is Marvel Studios’ finest film yet. There. We said it again. ",
"inLanguage":"en",
"@type":"Review",
"itemReviewed": {
"image": {
"@type": "ImageObject", "url": "https://cdn.empireonline.com/jpg/80/0/0/1000/563/0/north/0/0/0/0/0/t/films/271110/images/imSjsW6QRkH7fvhnqhQgjnbBBtd.jpg", "width": "1000", "height": "563"
}
,
"@type":"Movie",
"name":"Captain America: Civil War",
"sameAs":"https://www.themoviedb.org/movie/271110",
"datePublished":"2016-04-27T00:00:00+01:00"
}
,
"reviewRating": {
"@type": "Rating", "worstRating": 1, "bestRating": 5, "ratingValue": 5
}
,
"author": {
"@type": "Person", "name": "Dan Jolin"
}
,
"publisher": {
"@type":"Organization",
"name":"Empire",
"sameAs":"https://www.empireonline.com",
"logo": {
"@type": "ImageObject", "url": "https://www.empireonline.com/assets-legacy/img/empire.png"
}
}
,
"url": "https://www.empireonline.com/movies/captain-america-civil-war/review/",
"mainEntityOfPage": "https://www.empireonline.com/movies/captain-america-civil-war/review/"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment