Created
July 17, 2023 22:14
-
-
Save dannanelli/7f3032b8ab369cc761ee336e226281ab to your computer and use it in GitHub Desktop.
Multiple Person Schema Example Template for Local SEO
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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}}" | |
], | |
"url": "{{WEBSITE URL}}", | |
"image": "{{IMAGE URL}}", | |
"description": "{{BUSINESS DESCRIPTION}}", | |
"employees": [ | |
{ | |
"@type": "Person", | |
"name": "{{FULL NAME}}", | |
"alternateName": [ | |
"{{AKA NAME #1}}", | |
"{{AKA NAME #2}}" | |
], | |
"familyName": "{{LAST NAME}}", | |
"givenName": "{{FIRST NAME}}", | |
"worksFor": "{{BUSINESS NAME}}", | |
"jobTitle": "{{JOB TITLE}}", | |
"colleague": [ | |
"{{COLLEAGUE URL #1}}", | |
"{{COLLEAGUE URL #2}}" | |
], | |
"image": "{{IMAGE URL}}", | |
"gender": "{{GENDER}}", | |
"nationality": "{{NATIONALITY}}", | |
"sameAs": [ | |
"{{URL #1}}", | |
"{{URL #1}}" | |
] | |
}, | |
{ | |
"@type": "Person", | |
"name": "{{FULL NAME}}", | |
"alternateName": [ | |
"{{AKA NAME #1}}", | |
"{{AKA NAME #2}}" | |
], | |
"familyName": "{{LAST NAME}}", | |
"givenName": "{{FIRST NAME}}", | |
"worksFor": "{{BUSINESS NAME}}", | |
"jobTitle": "{{JOB TITLE}}", | |
"colleague": [ | |
"{{COLLEAGUE URL #1}}", | |
"{{COLLEAGUE URL #2}}" | |
], | |
"image": "{{IMAGE URL}}", | |
"gender": "{{GENDER}}", | |
"nationality": "{{NATIONALITY}}", | |
"sameAs": [ | |
"{{URL #1}}", | |
"{{URL #1}}" | |
] | |
}, | |
{ | |
"@type": "Person", | |
"name": "{{FULL NAME}}", | |
"alternateName": [ | |
"{{AKA NAME #1}}", | |
"{{AKA NAME #2}}" | |
], | |
"familyName": "{{LAST NAME}}", | |
"givenName": "{{FIRST NAME}}", | |
"worksFor": "{{BUSINESS NAME}}", | |
"jobTitle": "{{JOB TITLE}}", | |
"colleague": [ | |
"{{COLLEAGUE URL #1}}", | |
"{{COLLEAGUE URL #2}}" | |
], | |
"image": "{{IMAGE URL}}", | |
"gender": "{{GENDER}}", | |
"nationality": "{{NATIONALITY}}", | |
"sameAs": [ | |
"{{URL #1}}", | |
"{{URL #1}}" | |
] | |
} | |
] | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment