Skip to content

Instantly share code, notes, and snippets.

@henshaw
Last active August 28, 2023 23:18
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 henshaw/67d5b358d23241ee1e11242cd3c6d3d1 to your computer and use it in GitHub Desktop.
Save henshaw/67d5b358d23241ee1e11242cd3c6d3d1 to your computer and use it in GitHub Desktop.
Detailed Person Schema example
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Person",
"@id": "https://www.coywolf.news/jon-henshaw#Person",
"name": "Jon Henshaw",
"givenName": "Jonathan",
"familyName": "Henshaw",
"additionalName": "Michael",
"nationality":{
"@type":"Country",
"name":"USA"
},
"gender":"male",
"jobTitle": "Author",
"sameAs": [
"https://www.coywolf.news/jon-henshaw/",
"https://henshaw.social/@jon",
"https://www.linkedin.com/in/jonhenshaw/",
"https://www.crunchbase.com/person/jon-henshaw",
"https://en.gravatar.com/jonhenshaw",
"https://vimeo.com/blog/author/jonhenshaw/",
"https://www.imdb.com/name/nm15125035/",
"https://github.com/henshaw",
"https://profiles.wordpress.org/jonhenshaw/",
"https://muckrack.com/jon-henshaw"
],
"image":[
{
"@type": "ImageObject",
"url": "https://coywolf.media/file/coywolf/images/jon-henshaw/jon-henshaw-river.webp",
"width": "1200",
"height": "900"
},{
"@type": "ImageObject",
"url": "https://coywolf.media/file/coywolf/images/jon-henshaw/jon-henshaw-park.webp",
"width": "1200",
"height": "900"
}
],
"publishingPrinciples": "https://www.coywolf.news/policies-and-standards/",
"memberOf": [
{
"@type": "NewsMediaOrganization",
"@id": "https://www.coywolf.news#NewsMediaOrganization",
"name":"Coywolf News",
"url":"https://www.coywolf.news"
},{
"@type": "Organization",
"@id": "https://coywolf.llc#Organization",
"name": "Coywolf LLC",
"url": "https://coywolf.llc"
}
],
"alumniOf":
{
"@type":"EducationalOrganization",
"name":"University of Colorado Denver",
"url":"https://www.ucdenver.edu",
"address": {
"@type": "PostalAddress",
"addressLocality": "Denver",
"addressRegion": "CO",
"postalCode": "80204",
"streetAddress": "1201 Larimer Street"
}
}
}
</script>
@henshaw
Copy link
Author

henshaw commented Aug 28, 2023

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