Type Alias TermLinksTo

Describes links to other entities such as qlik charts, dataset columns etc.

type TermLinksTo = {
    createdAt?: string;
    createdBy?: string;
    id?: string;
    name?: string;
    openUrl?: string;
    resourceId?: string;
    resourceSpaceId?: string;
    resourceType?: "app" | "dataset";
    status?: number;
    subResourceId?: string;
    subResourceInvalid?: boolean;
    subResourceName?: string;
    subResourceType?: "master_dimension" | "master_measure" | "field";
    title?: string;
    type?: "definition" | "related";
}
Index

Properties

createdAt?: string
createdBy?: string
id?: string
name?: string
openUrl?: string
resourceId?: string

Different formats based on resource type. Could be e.g. OID or UUID.

resourceSpaceId?: string
resourceType?: "app" | "dataset"
status?: number

Http status code for item during batch operation.

subResourceId?: string

Different formats based on subresource type. Could be e.g. OID or UUID.

subResourceInvalid?: boolean

Populated and true if no matching subresource is found on parent resource. E.g. if a dataset field no longer exist but a link to that field exists.

subResourceName?: string
subResourceType?: "master_dimension" | "master_measure" | "field"
title?: string

Describes reason for item status during batch operation. E.g. why an error occurs during creation.

type?: "definition" | "related"