TableResultTable
public struct TableResultTable : Codable, Equatable
Full table object retrieved from Table Understanding Enrichment.
-
The numeric location of the identified element in the document, represented with two integers labeled
begin
andend
.Declaration
Swift
public var location: TableElementLocation?
-
The textual contents of the current table from the input document without associated markup content.
Declaration
Swift
public var text: String?
-
Text and associated location within a table.
Declaration
Swift
public var sectionTitle: TableTextLocation?
-
Text and associated location within a table.
Declaration
Swift
public var title: TableTextLocation?
-
An array of table-level cells that apply as headers to all the other cells in the current table.
Declaration
Swift
public var tableHeaders: [TableHeaders]?
-
An array of row-level cells, each applicable as a header to other cells in the same row as itself, of the current table.
Declaration
Swift
public var rowHeaders: [TableRowHeaders]?
-
An array of column-level cells, each applicable as a header to other cells in the same column as itself, of the current table.
Declaration
Swift
public var columnHeaders: [TableColumnHeaders]?
-
An array of key-value pairs identified in the current table.
Declaration
Swift
public var keyValuePairs: [TableKeyValuePairs]?
-
An array of cells that are neither table header nor column header nor row header cells, of the current table with corresponding row and column header associations.
Declaration
Swift
public var bodyCells: [TableBodyCells]?
-
An array of lists of textual entries across the document related to the current table being parsed.
Declaration
Swift
public var contexts: [TableTextLocation]?