Document Data Type

A PDF document.

Namespace
(Default)
Schema
ns0.xsd
Properties
name data type type namespace min/max occurs description
allPermissions Link element 0/1 Link to the document's pdf permissions.
annotations Link element 0/1 Link to the document's annotations.
attachments Link element 0/1 Link to the document's attachments.
author string element 0/1 The document's author.
bookmarks Link element 0/1 Link to the document's bookmarks.
content Link element 0/1 Link to the document's content.
creationDate dateTime element 0/1 The date the document was created. (ISO-8601 format)
creator string element 0/1 The document's creator.
encrypted boolean element 0/1 True if the document is encrypted.
encryption string element 0/1 The encryption algorithm and length.
fields Link element 0/1 Link to the document's fields.
keywords string element 0/1 The document's keywords.
linearized boolean element 0/1 True if the document is linearized.
modDate dateTime element 0/1 The date the document was last modified. (ISO-8601 format)
pageCount int element 0/1 The number of pages in the document.
pageMode string element 0/1 The value of the page mode viewer preference in the document. The page mode is used when the document is opened in a PDF viewer. This value can either be null or one of:
PAGEMODE_USENONE: Neither document outline nor thumbnail images are visible.
PAGEMODE_USEOUTLINES: Document outline visible.
PAGEMODE_USETHUMBS: Thumbnail images visible.
PAGEMODE_FULLSCREEN: Full screen mode, with no menu bar, window controls, or any other window visible.
PAGEMODE_USEOC: Optional content group panel visible (PDF 1.5 and up).
PAGEMODE_USEATTACHMENTS: Attachments panel visible (PDF 1.6 and up).
pages Link element 0/1 Link to the document's pages.
passwordPermissions Link element 0/1 Link to the document's password permissions.
producer string element 0/1 The document's producer.
signatureFields Link element 0/1 Link to the document's signature fields.
subject string element 0/1 The document's subject.
title string element 0/1 The title of the document.
Properties inherited from File
bytes long element 0/1 The size of the file in bytes.
link Link element 0/1 The link to this file.
path string element 0/1 The path to this file.

Example

<Document>
  <author>...</author>
  <creationDate>...</creationDate>
  <creator>...</creator>
  <keywords>...</keywords>
  <modDate>...</modDate>
  <pageCount>...</pageCount>
  <producer>...</producer>
  <subject>...</subject>
  <title>...</title>
  <linearized>...</linearized>
  <encrypted>...</encrypted>
  <encryption>...</encryption>
  <content>
    <rel>...</rel>
    <href>...</href>
  </content>
  <pages>
    <rel>...</rel>
    <href>...</href>
  </pages>
  <annotations>
    <rel>...</rel>
    <href>...</href>
  </annotations>
  <bookmarks>
    <rel>...</rel>
    <href>...</href>
  </bookmarks>
  <attachments>
    <rel>...</rel>
    <href>...</href>
  </attachments>
  <fields>
    <rel>...</rel>
    <href>...</href>
  </fields>
  <signatureFields>
    <rel>...</rel>
    <href>...</href>
  </signatureFields>
  <allPermissions>
    <rel>...</rel>
    <href>...</href>
  </allPermissions>
  <passwordPermissions>
    <rel>...</rel>
    <href>...</href>
  </passwordPermissions>
  <pageMode>...</pageMode>
  <path>...</path>
  <link>
    <rel>...</rel>
    <href>...</href>
  </link>
  <bytes>...</bytes>
</Document>