Schema Markup Examples - Softyfier
Schema Markup Examples
Schema markup that we use on this website
Example of WebPage markup
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "WebPage",
"name": "Softyfier"
}
</script>
Example of Organization markup
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "softyfier",
"url": "https://softyfier.com/",
"logo": "https://play-lh.googleusercontent.com/4iwVzZS0uR1VKII7TzQPLjIFVhRXwCj87rhTwY9xGlsJVT-Twq2Hd33z0_SwdmwmoA",
"contactPoint": {
"@type": "ContactPoint",
"telephone": "+923172118049",
"contactType": "customer service",
"availableLanguage": ["English","Urdu"]
},
"sameAs": [
"https://play.google.com/store/apps/dev?id=6688863596516354349,
"https://www.linkedin.com/company/softyfier/",
"https://www.facebook.com/softyfier/",
"https://www.instagram.com/softyfier/",
"https://twitter.com/softyfier",
"https://en.wikipedia.org/wiki/softyfier",
"https://github.com/softyfier"
]
}
</script>
Why use Organization markup?
This markup is similar to the one for WebPage, as it’s fairly simple to implement and doesn’t need to be updated once it has been implemented.
It’s used to add information about your organization to search engines, so they can tie things together and use it in results such as the Google knowledge panel.
Add as much relevant information about your organization as possible. We recommend adding links to your social media profiles as well as any contact information that you have available on your website.
Example of Website markup
<script type="application/ld+json">
{
"@context": "https://schema.org/",
"@type": "WebSite",
"name": "Softyfier",
"url": "https://softyfier.com/",
"potentialAction": {
"@type": "SearchAction",
"target": "https://softyfier.com/search/?q={search_term_string}",
"query-input": "required name=search_term_string"
}
}
</script>
Why use Website markup?
Search doesn’t only happen on Google - it can also happen on your website. If you have a search box that allows users to search for content on your website, then implementing it with the WebSite schema markup is well worth it. By adding the WebSite type, and the underlying SearchAction, you can be lucky enough to get a Sitelinks search box directly in the search results.
Comments
Post a Comment