Internet
The internet is like a giant, unorganized library filled with billions of shelves!
Search
Search engines are the librarians we rely upon for organizing the chaos, but how do they do it?
Schema!
That’s where structure data, or schema, comes in. Schema allows you to tell search engines exactly who you are and what you do.
Your Organization Deserves to Be Known
{
"@context": "http://schema.org/",
"@id": "https://www.example.com/#organization",
"@type": "Organization",
"name": "Example, Inc.",
"url": "https://www.example.com/",
"logo": "https://www.example.com/our-logo.jpg",
"subOrganization": {
"@type": "Organization",
"name": "Example Support",
"url": "https://support.example.com",
"@id": "https://support.example.com/#organization",
},
"contactPoint": [
{
"@type": "ContactPoint",
"telephone": "+1-800-555-7753",
"contactType": "sales",
"areaServed": "US",
},
{
"@type": "ContactPoint",
"telephone": "+1-800-555-2273",
"contactType": "technical support",
"areaServed": "US",
"availableLanguage": [
"EN",
"ES",
],
},
{
"@type": "ContactPoint",
"telephone": "+1-800-555-2273",
"contactType": "customer support",
"areaServed": "US",
"availableLanguage": [
"EN",
"ES",
],
},
],
"sameAs": [
"http://www.wikidata.org/entity/A123",
"https://www.youtube.com/user/Example",
"https://www.linkedin.com/company/example",
"https://www.facebook.com/Example",
"https://www.twitter.com/Example",
],
},