最佳答案
I'm curious about the best practice for applying JSON-LD onto a site for schema.org.
If I have a page with an Article
and I also want to define WebSite
on my page, I would have this:
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "WebSite",
"url": "http://www.example.com/",
"potentialAction": {
"@type": "SearchAction",
"target": "http://www.example.com/search?&q={query}",
"query-input": "required"
}
}
</script>
<!- … -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Article",
"author": "John Doe",
"interactionCount": [
"UserTweets:1203",
"UserComments:78"
],
"name": "How to Tie a Reef Knot"
}
</script>
Is this correct or wrong? Is there any benefit or need to merge these into the same script or array of items?