Package version:

Interface DatasetSchemaDataElement

Columns that define the physical type schema of the dataset.

interface DatasetSchemaDataElement {
    name?: any;
    type?: any;
    [property: string]: any;
}

Indexable

  • [property: string]: any

    Describes unknown properties. The value of an unknown property can be of "any" type.

Properties

Properties

name?: any

Name of the schema column. Type: string (or Expression with resultType string).

type?: any

Type of the schema column. Type: string (or Expression with resultType string).