Skip to content

Instantly share code, notes, and snippets.

@warnakey
Last active October 23, 2022 17:32
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save warnakey/b497dfb13b4c790ab8b776afe4253531 to your computer and use it in GitHub Desktop.
Save warnakey/b497dfb13b4c790ab8b776afe4253531 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>
@madanpraba
Copy link

Thank you very much for this example.

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