Table data source is a table, feature class, or raster that resides in a registered workspace (either a folder or geodatabase). In the case of a geodatabase, if versioned, use version to switch to an alternate geodatabase version. If version is empty or missing, the registered geodatabase version will be used. See https://developers.arcgis.com/web-map-specification/objects/tableDataSource/ https://developers.arcgis.com/web-scene-specification/objects/tableDataSource/.

interface TableDataSourceJson {
    dataSourceName?: string;
    gdbVersion?: string;
    type: "table";
    workspaceId?: string;
}

Hierarchy (view full)

Properties

dataSourceName?: string

The fully-qualified string value used to specify where the dataSource is derived.

gdbVersion?: string

If applicable, the value indicating the version of the geodatabase.

type

Type of the DataSource.

workspaceId?: string

The unique string value used to identify the data-source's workspace.