Type Alias SemanticTypesExportEnvelope

Self-describing export envelope for Qlik Cloud semantic types.

type SemanticTypesExportEnvelope = {
    exportedCount?: number;
    exportFormat: "QlikSemanticTypesExport";
    semanticTypes: ExportSemanticType[];
    version: string;
}
Index
exportedCount?: number

Total number of semantic types included in this export. Helps API consumers quickly determine export size without parsing the entire array.

exportFormat: "QlikSemanticTypesExport"

Format identifier for auto-detection on import.

semanticTypes: ExportSemanticType[]
version: string

Schema version for forward compatibility.