AnnotationsModel Data Type

All annotations in the PDF document.

Properties
name data type description
annotations array of AnnotationModel The list of annotations in the document.
link LinkModel Link to the annotations.
content LinkModel Link to the annotations content.

Example

{
  "annotations" : [ {
    "link" : {
      "rel" : "...",
      "href" : "..."
    },
    "name" : "...",
    "contents" : "...",
    "creator" : "...",
    "modifiedDate" : "...",
    "subject" : "...",
    "subtype" : "...",
    "rectangle" : {
      "x" : 12345.0,
      "y" : 12345.0,
      "width" : 12345.0,
      "height" : 12345.0
    },
    "pageIndex" : 12345
  }, {
    "link" : {
      "rel" : "...",
      "href" : "..."
    },
    "name" : "...",
    "contents" : "...",
    "creator" : "...",
    "modifiedDate" : "...",
    "subject" : "...",
    "subtype" : "...",
    "rectangle" : {
      "x" : 12345.0,
      "y" : 12345.0,
      "width" : 12345.0,
      "height" : 12345.0
    },
    "pageIndex" : 12345
  } ],
  "link" : {
    "rel" : "...",
    "href" : "..."
  },
  "content" : {
    "rel" : "...",
    "href" : "..."
  }
}