-
Notifications
You must be signed in to change notification settings - Fork 40
Annotation Formats
Gerben edited this page Jun 4, 2020
·
1 revision
Different softwares use (or have used) various ways to store annotations or express fragments of documents. This list documents some for future reference; perhaps we will want to create some compatibility options, conversion tools, …
Annotator (i.e. the other Annotator: https://annotatorjs.org)
Format documentation: http://docs.annotatorjs.org/en/v1.2.x/annotation-format.html
{
"id": "39fc339cf058bd22176771b3e3187329", # unique id (added by backend)
"annotator_schema_version": "v1.0", # schema version: default v1.0
"created": "2011-05-24T18:52:08.036814", # created datetime in iso8601 format (added by backend)
"updated": "2011-05-26T12:17:05.012544", # updated datetime in iso8601 format (added by backend)
"text": "A note I wrote", # content of annotation
"quote": "the text that was annotated", # the annotated text (added by frontend)
"uri": "http://example.com", # URI of annotated document (added by frontend)
"ranges": [ # list of ranges covered by annotation (usually only one entry)
{
"start": "/p[69]/span/span", # (relative) XPath to start element
"end": "/p[70]/span/span", # (relative) XPath to end element
"startOffset": 0, # character offset within start element
"endOffset": 120 # character offset within end element
}
],
"user": "alice", # user id of annotation owner (can also be an object with an 'id' property)
"consumer": "annotateit", # consumer key of backend
"tags": [ "review", "error" ], # list of tags (from Tags plugin)
"permissions": { # annotation permissions (from Permissions/AnnotateItPermissions plugin)
"read": ["group:__world__"],
"admin": [],
"update": [],
"delete": []
}
}
Format documentation for its selectors: https://github.com/readium/architecture/tree/master/models/locators
{
"href": "http://example.com/chapter1",
"type": "text/html",
"title": "Chapter 1",
"locations": {
"position": 4,
"progression": 0.03401,
"totalProgression": 0.01349
},
"text": {
"after": "It is a truth universally acknowledged, that a single man in possession of a good fortune, must be in want of a wife."
}
}
Add others! Or perhaps we can link to another source that has already done this research?