Skip to content

Instantly share code, notes, and snippets.

@dannanelli
Last active July 17, 2023 21:00
Show Gist options
  • Save dannanelli/b7bef368bdf70f9b4637fb69e578e1c6 to your computer and use it in GitHub Desktop.
Save dannanelli/b7bef368bdf70f9b4637fb69e578e1c6 to your computer and use it in GitHub Desktop.
AboutPage Schema Example Template for Local SEO
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "AboutPage",
"name": "{{BUSINESS NAME}}",
"alternateName": "{{AKA NAME}}",
"description": "{{BUSINESS DESCRIPTION}}",
"specialty": "{{DESCRIBE SPECIALTY}}",
"relatedLink": "{{RELATED PAGE URL}}",
"about": "{{ABOUT US DESCRIPTION}}",
"publisher": {
"@type": "Organization",
"name": "{{BUSINESS NAME}}",
"logo": "{{LOGO URL}}",
"telephone": "{{PHONE NUMBER}}",
"email": "{{EMAIL ADDRESS}}",
"sameAs": [
"{{URL #1}}",
"{{URL #2}}"
],
"url": "{{WEBSITE URL}}",
"image": "{{IMAGE URL}}",
"description": "{{BUSINESS DESCRIPTION}}",
"address": {
"@type": "PostalAddress",
"streetAddress": "{{STREET ADDRESS}}",
"addressLocality": "{{CITY}}",
"addressRegion": "{{STATE ABBREVIATION}}",
"postalCode": "{{ZIP CODE}}"
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment