Skip to content

Instantly share code, notes, and snippets.

@evanp
Created April 23, 2023 18:36
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 evanp/e2fb0e6d2ed61b7dc4a48f00cfa8968c to your computer and use it in GitHub Desktop.
Save evanp/e2fb0e6d2ed61b7dc4a48f00cfa8968c to your computer and use it in GitHub Desktop.
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{"Movie": {"@type": "@id"}, "favouriteMovies": {"@type": "@id"}}
],
"id": "https://person.example/eprodrom",
"type": "Person",
"inbox": "https://person.example/eprodrom/inbox",
"outbox": "https://person.example/eprodrom/outbox",
"favouriteMovies": {
"type": "OrderedCollection",
"id": "https://person.example/eprodrom/favouriteMovies",
"items": [
{
"type": ["Movie", "Video"],
"name": "Memento",
"published": "1999-10-12T12:12:12Z"
"id": "https://www.wikidata.org/wiki/Q190525"
},
{
"type": ["Movie", "Video"],
"name": "Knives Out",
"published": "2019-12-28T12:12:12Z"
"id": "https://www.wikidata.org/wiki/Q57982486"
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment