Skip to content

Instantly share code, notes, and snippets.

@dillonredding
Last active November 23, 2021 01:04
Show Gist options
  • Save dillonredding/c706df05881388652da88973a348c897 to your computer and use it in GitHub Desktop.
Save dillonredding/c706df05881388652da88973a348c897 to your computer and use it in GitHub Desktop.
Complete example graph in JSON-LD (compacted)
{
"@context": "https://gist.githubusercontent.com/dillonredding/b962efcfe8811a8fe4c46929ef57b9d4/raw/a82c71446e95dd77b042760a38689cd20df93666/remote-context.json",
"@id": "https://harrypotter.fandom.com/wiki/Neville_Longbottom",
"@type": "Person",
"givenName": "Neville",
"birthDate": "1980-07-30",
"knows": [
{
"@id": "https://harrypotter.fandom.com/wiki/Luna_Lovegood",
"@type": "Person",
"givenName": "Luna",
"birthDate": "1981-02-13"
},
{
"@id": "https://harrypotter.fandom.com/wiki/Ronald_Weasley",
"@type": "Person",
"givenName": "Ronald"
}
],
"alumniOf": {
"@type": "Organization",
"name": "Hogwarts School of Witchcraft and Wizardry",
"logo": "https://bit.ly/3kDpyDf",
"slogan": {
"@value": "Draco Dormiens Nunquam Titillandus",
"@language": "la"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment