Type Alias DataField

type DataField = {
    alias?: string;
    dataType: FieldDataType;
    description?: string;
    encrypted?: boolean;
    index?: number;
    name: string;
    nullable?: boolean;
    ordinalPositionInKey?: number;
    orphan?: boolean;
    primaryKey?: boolean;
    properties?: Record<string, unknown>;
    sensitive?: boolean;
    tags?: string[];
    userTags?: UserTag[];
}
Index

Properties

alias?: string
dataType: FieldDataType
description?: string
encrypted?: boolean
index?: number
name: string
nullable?: boolean
ordinalPositionInKey?: number
orphan?: boolean
primaryKey?: boolean
properties?: Record<string, unknown>
sensitive?: boolean
tags?: string[]

An array of system tags

userTags?: UserTag[]

An array of user-supplied tags