PreflightResultsModel Data Type

All preflight result records.

Properties
name data type description
resultRecords map of array of PreflightResultRecordModel A list of result records categorized by their headers.
preflightInfo PreflightInformationModel Information about the preflight run that created the results.
documentInfo DocumentInfoModel Information for the document that was preflighted.

Example

{
  "resultRecords" : {
    "property1" : [ {
      "rectangle" : {
        "x" : 12345.0,
        "y" : 12345.0,
        "width" : 12345.0,
        "height" : 12345.0
      },
      "detail" : "...",
      "header" : "...",
      "pageNumber" : 12345
    }, {
      "rectangle" : {
        "x" : 12345.0,
        "y" : 12345.0,
        "width" : 12345.0,
        "height" : 12345.0
      },
      "detail" : "...",
      "header" : "...",
      "pageNumber" : 12345
    } ],
    "property2" : [ {
      "rectangle" : {
        "x" : 12345.0,
        "y" : 12345.0,
        "width" : 12345.0,
        "height" : 12345.0
      },
      "detail" : "...",
      "header" : "...",
      "pageNumber" : 12345
    }, {
      "rectangle" : {
        "x" : 12345.0,
        "y" : 12345.0,
        "width" : 12345.0,
        "height" : 12345.0
      },
      "detail" : "...",
      "header" : "...",
      "pageNumber" : 12345
    } ]
  },
  "preflightInfo" : {
    "profile" : "...",
    "pasVersion" : "...",
    "date" : "...",
    "duration" : 12345
  },
  "documentInfo" : {
    "author" : "...",
    "creationDate" : "...",
    "creator" : "...",
    "modDate" : "...",
    "pageCount" : 12345,
    "producer" : "...",
    "subject" : "...",
    "title" : "...",
    "keywords" : "..."
  }
}