PreflightResultRecordModel Data Type

This object holds information about an issue found in the document. The information includes a header or short name, a detail string and the page number where the issue happened.

Properties
name data type description
rectangle RectangleModel The bounds for which the result record was created.
detail string The detailed information about this result.
header string A short string about the result. The intent is to use this in a list.
pageNumber number The page number for which the result record was created.

Example

{
  "rectangle" : {
    "x" : 12345.0,
    "y" : 12345.0,
    "width" : 12345.0,
    "height" : 12345.0
  },
  "detail" : "...",
  "header" : "...",
  "pageNumber" : 12345
}