DataCell Data Type

Simple container to carry extracted data string for a single cell. Used by ExtractedData.

Properties
name data type description
content string Content of the cell (the field value)
wordIndex number Word index within the document adapter
boundingBox BoundingBox Position information for the cell
confidence number Confidence for this cell
page number

Example

{
  "content" : "...",
  "wordIndex" : 12345,
  "boundingBox" : {
    "left" : 12345,
    "top" : 12345,
    "right" : 12345,
    "bottom" : 12345
  },
  "confidence" : 12345.0,
  "page" : 12345
}