Annotation Data Type

An annotation in the PDF document.

Namespace
(Default)
Schema
ns0.xsd
Properties
name data type type namespace min/max occurs description
contents string element 0/1 The contents associated with the annotation.
creator string element 0/1 The annotation's creator.
link Link element 0/1 The link to this annotation.
modifiedDate dateTime element 0/1 The date when the annotation was most recently modified. (ISO-8601 format)
name string element 0/1 The annotation name, a text string uniquely identifying it among all the annotations on its page.
pageIndex int element 1/1 The index of the page that contains the annotation.
rectangle Rectangle element 0/1 The annotation's bounds.
subject string element 0/1 The annotation's subject.
subtype string element 0/1 The annotation's subtype.

Example

<Annotation>
  <link>
    <rel>...</rel>
    <href>...</href>
  </link>
  <name>...</name>
  <contents>...</contents>
  <creator>...</creator>
  <modifiedDate>...</modifiedDate>
  <subject>...</subject>
  <subtype>...</subtype>
  <rectangle>
    <x>...</x>
    <y>...</y>
    <width>...</width>
    <height>...</height>
  </rectangle>
  <pageIndex>...</pageIndex>
</Annotation>