Last active
July 16, 2024 20:52
-
-
Save warnakey/b497dfb13b4c790ab8b776afe4253531 to your computer and use it in GitHub Desktop.
ProfilePage Schema Example in JSON-LD
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" : "ProfilePage", | |
"mainEntity" : { | |
"@type" : "Person", | |
"name" : "Jane Doe", | |
"givenName" : "Jane", | |
"familyName" : "Doe", | |
"email" : "[email protected]", | |
"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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you very much for this example.