html

applicaton/ld+json for search engines example

<script type="application/ld+json">
{
    "@context": "http://schema.org",
    "@type": "WebPage",
    "name": "Devsheet",
    "description": "You can write your webpage description here",
    "publisher": {
        "@type": "HomePage",
        "name": "Devsheet's Website"
    }
}
</script>

Here is a simple example of application/ld+json which can be helpful to make understand your webpage to the search engines and crawlers. You can add this into your webpage HTML. 

Was this helpful?