Skip to content

Instantly share code, notes, and snippets.

@patrickcoombe
Created March 22, 2024 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save patrickcoombe/c81e3bbe567d5437fadb76947b0ddf5d to your computer and use it in GitHub Desktop.
Save patrickcoombe/c81e3bbe567d5437fadb76947b0ddf5d to your computer and use it in GitHub Desktop.
JSON-LD Person Example From Schema.org
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"address": {
"@type": "PostalAddress",
"addressLocality": "Seattle",
"addressRegion": "WA",
"postalCode": "98052",
"streetAddress": "20341 Whitworth Institute 405 N. Whitworth"
},
"colleague": [
"http://www.xyz.edu/students/alicejones.html",
"http://www.xyz.edu/students/bobsmith.html"
],
"email": "mailto:jane-doe@xyz.edu",
"image": "janedoe.jpg",
"jobTitle": "Professor",
"name": "Jane Doe",
"telephone": "(425) 123-4567",
"url": "http://www.janedoe.com"
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment