Type Alias DataModelMetadata

type DataModelMetadata = {
    fields?: FieldMetadata[];
    has_section_access?: boolean;
    is_direct_query_mode?: boolean;
    reload_meta?: LastReloadMetadata;
    static_byte_size?: number;
    tables?: TableMetadata[];
    tables_profiling_data?: TableProfilingData[];
    usage?: UsageEnum;
}
Index

Properties

fields?: FieldMetadata[]

List of field descriptions.

has_section_access?: boolean

If set to true, the app has section access configured.

is_direct_query_mode?: boolean
reload_meta?: LastReloadMetadata
static_byte_size?: number

Static memory usage for the app.

tables?: TableMetadata[]

List of table descriptions.

tables_profiling_data?: TableProfilingData[]

Profiling data of the tables in the app.

usage?: UsageEnum