Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ColumnDefinition

import type { ColumnDefinition } from "https://aws-api.deno.dev/v0.3/services/finspacedata.ts?docs=full";

The definition of a column in a tabular Dataset.

interface ColumnDefinition {
columnDescription?: string | null;
columnName?: string | null;
dataType?: ColumnDataType | null;
}

§Properties

§
columnDescription?: string | null
[src]

Description for a column.

§
columnName?: string | null
[src]

Name for a column.

§
dataType?: ColumnDataType | null
[src]

Data type of a column.

  • STRING - A String data type. CHAR - A char data type. INTEGER - An integer data type. TINYINT - A tinyint data type. SMALLINT - A smallint data type. BIGINT - A bigint data type. FLOAT - A float data type. DOUBLE - A double data type. DATE - A date data type. DATETIME - A datetime data type. BOOLEAN - A boolean data type. BINARY - A binary data type.