Type Alias FieldInformation

Information about the type of the field.

type FieldInformation = {
    kind: FieldTypeEnum;
    name?: string;
    precision?: PrecisionEnum;
    semanticTypeId?: string;
}
Index

The kind of the field type.

name?: string

The name of the standard type (if applicable).

precision?: PrecisionEnum

The precision of the type (e.g., for date/time fields).

semanticTypeId?: string

The ID of the semantic type (if applicable).