Skip to content

Instantly share code, notes, and snippets.

@evanp
Created August 18, 2024 16:46
Show Gist options
  • Save evanp/dc5f242aa4a2a6aab1f8b9977e4d04fc to your computer and use it in GitHub Desktop.
Save evanp/dc5f242aa4a2a6aab1f8b9977e4d04fc to your computer and use it in GitHub Desktop.
Converting an AS2 collection from JSON-LD to n-quads
{
"@context": "https://www.w3.org/ns/activitystreams",
"id": "https://example.org/collection1",
"type": "Collection",
"items": [
{
"id": "https://example.org/note1",
"type": "Note",
"content": "This is a simple note"
}
]
}
<https://example.org/collection1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://www.w3.org/ns/activitystreams#Collection> .
<https://example.org/collection1> <https://www.w3.org/ns/activitystreams#items> <https://example.org/note1> .
<https://example.org/note1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://www.w3.org/ns/activitystreams#Note> .
<https://example.org/note1> <https://www.w3.org/ns/activitystreams#content> "This is a simple note" .
{
"@context": "https://www.w3.org/ns/activitystreams",
"id": "https://example.org/collection1",
"type": "Collection",
"items": [
"https://example.org/note1"
]
}
<https://example.org/collection1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://www.w3.org/ns/activitystreams#Collection> .
<https://example.org/collection1> <https://www.w3.org/ns/activitystreams#items> <https://example.org/note1> .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment