Options
All
  • Public
  • Public/Protected
  • All
Menu

Data provided to Publisher.createDataTableFromJsonUri used to create a new data table using data located in a JSON file located at a URI. The JSON file at the URI should be of the form:

{
columns: Array<{
name: string,
dataType: 'int'
| 'long'
| 'float'
| 'double'
| 'decimal'
| 'binary'
| 'bool'
| 'string'
| 'date'
| 'datetime'
| 'timespan',
}>,
data: any[][],
format: 'dataTable',
version: '1.0',
}

Hierarchy

  • CreateDataTableFromUriRequest

Index

Properties

disableCertificateCheck?: boolean

Disable HTTPS certificate trust check

isLinkable: boolean

If set to true the actual data (column and rows) will not be embedded in the document, rather the data will always be loaded from the remote source.

table: { name: string; properties?: {} }

Details for the new table.

Type declaration

  • name: string
  • Optional properties?: {}
    • [s: string]: any
uri: string

The location of the JSON file containing the data for the table.

Generated using TypeDoc