Table schema including column definitions and metadata.

interface IDataTableSchema {
    columns: IDataTableColumn[];
    description: string;
    id: string;
    name: string;
    rowCount: number;
    updatedAt: string;
}

Properties

columns: IDataTableColumn[]

Column definitions.

description: string

Table description.

id: string

Table ID.

name: string

Table name.

rowCount: number

Total rows in the table.

updatedAt: string

ISO 8601 last-modified timestamp.