Attachment Data Type

A single attachment in the PDF Document.

Namespace
(Default)
Schema
ns0.xsd
Properties
name data type type namespace min/max occurs description
content Link element 0/1 Link to the attachment's content.
creationDate dateTime element 0/1 The date and time when the attachment was created.
description string element 0/1 The description string from the attachment.
fileName string element 0/1 The attachment file name.
link Link element 0/1 Link to this attachment.
modDate dateTime element 0/1 The date and time when the attachment was last modified.
relationship string element 0/1 The relationship of the attachment to the PDF document.
size int element 1/1 The size of the file content in bytes.

Example

<Attachment>
  <fileName>...</fileName>
  <size>...</size>
  <creationDate>...</creationDate>
  <modDate>...</modDate>
  <description>...</description>
  <relationship>...</relationship>
  <link>
    <rel>...</rel>
    <href>...</href>
  </link>
  <content>
    <rel>...</rel>
    <href>...</href>
  </content>
</Attachment>