Created
May 10, 2020 19:24
-
-
Save farukgaric/a074a87d1360d65ffea73d070e9e1e44 to your computer and use it in GitHub Desktop.
Structured data - Person (json-ld)
This file contains 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": "https://schema.org", | |
"@type": "Person", | |
"name": "John Doe", | |
"jobTitle": "Graduate research assistant", | |
"affiliation": "University of Dreams", | |
"additionalName": "Johnny", | |
"url": "http://www.example.com", | |
"address": { | |
"@type": "PostalAddress", | |
"addressLocality": "Warner Robins", | |
"addressRegion": "Georgia", | |
"streetAddress": "1234 Peach Drive" | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment