Type Alias ExportSemanticType

A semantic type in the export file, stripped of internal fields.

type ExportSemanticType = {
    activated: boolean;
    config:
        | SemanticTypeRegex
        | SemanticTypeDictionary
        | ExportSemanticTypeCompound;
    defaultId?: string;
    description?: string;
    label: string;
    type: "REGEX"
    | "DICTIONARY"
    | "COMPOUND";
    useForValidation: boolean;
}
Index
activated: boolean
defaultId?: string

Identifier of the parent default semantic type (Qlik-provisioned). Null for user-created types. Used for identity preservation during cross-tenant import and as fallback for COMPOUND children resolution when labels differ across tenants.

description?: string
label: string
type: "REGEX" | "DICTIONARY" | "COMPOUND"
useForValidation: boolean