geopackage-ts
    Preparing search index...

    Interface DataColumn

    Represents a row in the gpkg_data_columns table.

    Each record provides descriptive metadata for a column in a user data table, including a human-readable name, title, description, MIME type, and an optional reference to a constraint.

    interface DataColumn {
        column_name: string;
        constraint_name: string | null;
        description: string | null;
        mime_type: string | null;
        name: string | null;
        table_name: string;
        title: string | null;
    }
    Index

    Properties

    column_name: string

    The name of the column in the user data table.

    constraint_name: string | null

    The name of a constraint from gpkg_data_column_constraints, or null if unconstrained.

    description: string | null

    A human-readable description for the column, or null if not specified.

    mime_type: string | null

    The MIME type of the column values (e.g., 'text/xml'), or null if not applicable.

    name: string | null

    A human-readable identifier for the column, or null if not specified.

    table_name: string

    The name of the user data table containing the column.

    title: string | null

    A human-readable title for the column, or null if not specified.