Skip to content

Instantly share code, notes, and snippets.

@DreamEcho100
Forked from warnakey/ProfilePage Schema Example
Created September 11, 2021 06:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DreamEcho100/ce77dc30e59c584065b384ca32b532aa to your computer and use it in GitHub Desktop.
Save DreamEcho100/ce77dc30e59c584065b384ca32b532aa to your computer and use it in GitHub Desktop.
ProfilePage Schema Example in JSON-LD
<script type="application/ld+json">
{
"@context" : "http://schema.org",
"@type" : "ProfilePage",
"mainEntity" : {
"@type" : "Person",
"name" : "Jane Doe",
"givenName" : "Jane",
"familyName" : "Doe",
"email" : "jdoe@examplelaw.com",
"telephone" : "9195555555",
"jobTitle" : "Partner",
"image" : "https://www.examplelaw.com/wp-content/examplelaw/2018/02/jane-doe.jpg",
"url" : "https://www.examplelaw.com/attorney/jane-doe/",
"worksFor": {
"@type": "Organization",
"name": "Example Law Firm",
"url": "https://www.examplelaw.com/",
"address": {
"@type": "PostalAddress",
"addressLocality": "Raleigh",
"addressRegion": "NC",
"postalCode": "27604",
"streetAddress": "100 Main Street, Suite 201",
"addressCountry": "USA"
}
},
"gender": "female",
"alumniOf": [
{
"@type" : "CollegeOrUniversity",
"name" : "University of North Carolina at Chapel Hill"
},
{
"@type" : "CollegeOrUniversity",
"name" : "University of North Carolina School of Law"
}
],
"memberOf": [
"North Carolina State Bar",
"Wake County Bar",
"North Carolina Board Certified Family Law Specialist",
"Certified Parenting Coordinator",
"NCDRC Certified Family Financial Mediator"
],
"award": [
"North Carolina Super Lawyers, Rising Star 2018",
"Business Leader Magazine, North Carolina Top Family Lawyer"
],
"sameAs": [
"https://www.facebook.com/JaneDoeAttorney/",
"https://www.linkedin.com/in/jane-doe-attorney",
"https://twitter.com/janedoeattorney"
]
}
}
</script>
@DreamEcho100
Copy link
Author

ProfilePage Schema Example

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment