Created
August 18, 2024 16:46
-
-
Save evanp/dc5f242aa4a2a6aab1f8b9977e4d04fc to your computer and use it in GitHub Desktop.
Converting an AS2 collection from JSON-LD to n-quads
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@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" | |
} | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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" . |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": "https://www.w3.org/ns/activitystreams", | |
"id": "https://example.org/collection1", | |
"type": "Collection", | |
"items": [ | |
"https://example.org/note1" | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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