-
-
Notifications
You must be signed in to change notification settings - Fork 32
Open
Labels
Description
Schema.org is a standard to enhance websites with meta information. Search engines could read this information to automatically detect the content of a website.
One common form to write schema information is using JSON-LD format, where a script tag is inserted at the head tag of the page, like this:
<!-- Schema data -->
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "LegalService",
"name": "Giane Marize Barroso",
"url": "https://gmbarroso.adv.br",
"image": "https://gmbarroso.adv.br/android-chrome-512x512.png",
"contactPoint" : [
{
"@type" : "ContactPoint",
"email" : "[email protected]",
"telephone" : "+55 (11) 2847-4740",
"contactType" : "customer service",
"url": "https://gmbarroso.adv.br",
"areaServed": ["BR"],
"availableLanguage": ["Portuguese"]
}
]
}
</script>
A feature that allows the user to input a global JSON-LD tag content (as a string) will enhance SEO optimization for his/her website.
Due to the huge domain for schema.org, it would be almost impossible to insert JSON-LD in a form other than string.
alegauss