Skip to content

Instantly share code, notes, and snippets.

View dannanelli's full-sized avatar

Dani Owens: Local SEO Consultant dannanelli

View GitHub Profile
@dannanelli
dannanelli / LocalBusiness-Schema.jsonld
Last active August 30, 2019 21:14
LocalBusiness Schema Markup for SEO
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type" : "LocalBusiness",
"@id" : "WEBSITE URL",
"name" : "BUSINESS NAME",
"hasMap": "https://maps.google.com/maps?cid=YOURCIDNUMBER",
"logo" : "LOGO URL",
"telephone" : "PHONE NUMBER",
"email" : "EMAIL ADDRESS",
@dannanelli
dannanelli / Reviews-Schema.jsonld
Last active August 30, 2019 21:15
Reviews Schema Markup for SEO
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "BUSINESS NAME",
"address": {
"@type": "PostalAddress",
"streetAddress": "STREET ADDRESS",
"addressLocality": "CITY",
"addressRegion": "STATE ABBREVIATION",
@dannanelli
dannanelli / Organization-Schema.jsonld
Last active July 17, 2023 21:00
Organization Schema Example Template for Local SEO
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"@id": "{{WEBSITE URL}}",
"name": "{{BUSINESS NAME}}",
"logo": "{{LOGO URL}}",
"telephone": "{{PHONE NUMBER}}",
"email": "{{EMAIL ADDRESS}}",
"sameAs": [
@dannanelli
dannanelli / LocalBusiness-Schema-Location-Pages.jsonld
Last active July 25, 2023 20:58
LocalBusiness Schema Example Template for Local SEO
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type" : "LocalBusiness",
"@id" : "{{WEBSITE URL}}",
"name" : "{{BUSINESS NAME}}",
"hasMap": "{{https://maps.google.com/maps?cid=YOURCIDNUMBER}}",
"logo" : "{{LOGO URL}}",
"telephone" : "{{PHONE NUMBER}}",
"email" : "{{EMAIL ADDRESS}}",
@dannanelli
dannanelli / AboutPage-Schema.jsonld
Last active July 17, 2023 21:00
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}}",
@dannanelli
dannanelli / FAQPage-Schema.jsonld
Last active July 17, 2023 21:00
FAQPage Schema Example Template for Local SEO
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "FAQPage",
"mainEntity": [
{
"@type": "Question",
"name": "{{QUESTION #1}}",
"acceptedAnswer": {
"@type": "Answer",
@dannanelli
dannanelli / Review-AggregateRating-Schema.jsonld
Last active July 17, 2023 21:01
Review + AggregateRating Schema Example Template for Local SEO
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "LocalBusiness",
"name": "{{BUSINESS NAME}}",
"address": {
"@type": "PostalAddress",
"streetAddress": "{{STREET ADDRESS}}",
"addressLocality": "{{CITY}}",
"addressRegion": "{{STATE ABBREVIATION}}",
@dannanelli
dannanelli / ContactPage-Schema.jsonld
Last active June 13, 2024 08:13
ContactPage Schema Example Template for Local SEO
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ContactPage",
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "{{CONTACT PAGE URL}}"
},
"publisher": {
"@type": "LocalBusiness",
@dannanelli
dannanelli / Person-Schema.jsonld
Last active July 17, 2023 22:17
Person Schema Example Template for Local SEO
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"@id": "{{WEBSITE URL}}",
"name": "{{BUSINESS NAME}}",
"logo": "{{LOGO URL}}",
"sameAs": [
"{{URL #1}}",
"{{URL #2}}"
@dannanelli
dannanelli / Multiple-Person-Schema.jsonld
Created July 17, 2023 22:14
Multiple Person Schema Example Template for Local SEO
<script type="application/ld+json">
{
"@context": "http://schema.org",
"@type": "Organization",
"@id": "{{WEBSITE URL}}",
"name": "{{BUSINESS NAME}}",
"logo": "{{LOGO URL}}",
"sameAs": [
"{{URL #1}}",
"{{URL #2}}"