- Print
- DarkLight
- PDF
Add Organization Schema Markup to Your Website
Learn how to add a Schema Markup code to markup your organization's website.
JSON-LD Schema Markup, or simply Schema Markup is a form of structured data that you can add to your Home page. This information can help search engines better understand your website and improve your search engine ranking. Organization Schema Markup is a specific type of Schema Markup that is used to describe your business.
When you add Organization Schema Markup to your web page, you are providing search engines with additional information about your organization, such as its name, address, phone number, and website.
Here's an example of how Organization Schema Markup can be used on a web page:
<script type="application/ld+json">
{
"@context": "http://schema.org/",
"@type": "Organization",
"name": "Example OTT",
"url": "https://www.exampleott.com/",
"logo": "https://appcmsprod.viewlift.com/4c123456-d20c-12ab-c98c-765b43e2a2c2/images/example_ott_logo_280x80.png",
"address": {
"addressCountry": "US",
"addressLocality": "Mountain View",
"addressRegion": "CA",
"postalCode": "94043",
"streetAddress": "1600 Amphitheatre Parkway"
},
"contactPoint": {
"contactType": "customer service",
"email": "support@exampleott.com",
"telephone": "+1 650 --- ----"
},
"sameAs": [
"https://www.facebook.com/exampleott/",
"https://twitter.com/exampleott?t=ABCEFGfePlSXcUQ2UtrtHQ&s=08",
"https://www.instagram.com/exampleott/",
"https://www.youtube.com/channel/<insert-channel here>",
"https://www.exampleott.com/"
]
}
</script>
This code would tell search engines that the web page is about ExampleOTT, and it would provide additional information about ExampleOTT, such as its address, phone number, and email address.