Skip to content

Instantly share code, notes, and snippets.

@regisrob
Created November 15, 2016 13:21
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 regisrob/83a66ada3dad44f059a53dd646518d77 to your computer and use it in GitHub Desktop.
Save regisrob/83a66ada3dad44f059a53dd646518d77 to your computer and use it in GitHub Desktop.
RS schema.org : Person
{
"@context": "http://schema.org/",
"@type": "Person",
"url": "{URL_PAGE_PERSON}",
"name": "{TITLE_PAGE_PERSON}",
"additionalName": "{./Participant/Name}",
"image": "{URL_IMAGE_PERSON}",
"sameAs": "{./Participant/Concept}",
"description": "{./Participant/Note}",
"birthDate": "{./Participant/Birth/Date/Year}",
"birthPlace": {
"@type": "Place",
"name": "{./Participant/Birth/Place/Name"
},
"deathDate": "{./Participant/Death/Date/Year}",
"deathPlace": {
"@type": "Place",
"name": "{./Participant/Death/Place/Name"
},
"gender": "{./Participant/Gender}",
"jobTitle": "{./Participant/Occupation}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment