Skip to content

Instantly share code, notes, and snippets.

@evanp
Last active April 23, 2023 19:40
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/7cf38dbe7a4a8a8d56e92a8ff68df044 to your computer and use it in GitHub Desktop.
Save evanp/7cf38dbe7a4a8a8d56e92a8ff68df044 to your computer and use it in GitHub Desktop.
{
"@context": [
"https://www.w3.org/ns/activitystreams",
{"xsd": "http://www.w3.org/2001/XMLSchema#", "priorityInbox": {"@type": "@id"}, "priority": {"@type": "xsd:nonNegativeInteger"}}
],
"id": "https://person.example/evan",
"inbox": {
"id": "https://person.example/evan/inbox",
"type": "OrderedCollection",
"items": [
{"id": "https://other.example/fred/13", "published": "2023-04-23T00:00:00Z"},
{"id": "https://other.example/broadcast/33", "published": "2023-04-22T00:00:00Z"},
{"id": "https://city.example/taxes/100", "published": "2023-04-21T00:00:00Z"}
]
},
"priorityInbox": {
"id": "https://person.example/evan/priorityInbox",
"type": "OrderedCollection",
"items": [
{"id": "https://city.example/taxes/100", "priority": 100, "published": "2023-04-21T00:00:00Z"},
{"id": "https://other.example/fred/13", "priority": 6, "published": "2023-04-23T00:00:00Z"}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment