Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save RichardWallis/32e46195c0af90e8833e6a4bfd806456 to your computer and use it in GitHub Desktop.
Save RichardWallis/32e46195c0af90e8833e6a4bfd806456 to your computer and use it in GitHub Desktop.
Schema.org associating people/employees with worksFor organizations using Role
{
"@context": "http://schema.org",
"@type": "Person",
"@id": "#P1",
"name": "A N Employee",
"worksFor": [
{
"@type": "Role",
"roleName": "Chief Bottle Washer",
"startDate": "2011:04:01",
"worksFor": {
"@type": "Organization",
"name": "A N Organization"
}
},
{
"@type": "Role",
"roleName": "Assistant Bottle Washer",
"startDate": "2009:04:01",
"endDate": "2011:04:01",
"worksFor": {
"@type": "Organization",
"name": "A N Organization"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment