Skip to content

Instantly share code, notes, and snippets.

@BigBlueHat
Created April 18, 2016 20:04
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 BigBlueHat/4490bb5a3faee5c6423bed137ca1ac66 to your computer and use it in GitHub Desktop.
Save BigBlueHat/4490bb5a3faee5c6423bed137ca1ac66 to your computer and use it in GitHub Desktop.
Web Annotation First Example Comparison - these are all the same
<http://example.org/anno1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/oa#Annotation> .
<http://example.org/anno1> <http://www.w3.org/ns/oa#hasBody> <http://example.org/post1> .
<http://example.org/anno1> <http://www.w3.org/ns/oa#hasTarget> <http://example.com/page1> .
{
"@context": "http://www.w3.org/ns/anno.jsonld",
"id": "http://example.org/anno1",
"type": "Annotation",
"body": "http://example.org/post1",
"target": [
{
"id": "http://example.com/page1"
}
]
}
{
"@context": "http://www.w3.org/ns/anno.jsonld",
"id": "http://example.org/anno1",
"type": "Annotation",
"body": "http://example.org/post1",
"target": {
"id": "http://example.com/page1"
}
}
{
"@context": "http://www.w3.org/ns/anno.jsonld",
"id": "http://example.org/anno1",
"type": "Annotation",
"body": "http://example.org/post1",
"target": "http://example.com/page1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment