Home > @tridion-sites/open-api-client > TaxonomyNode
Represents a Taxonomy node, including its child nodes. The Taxonomy Root Node represents an (External) Category, child nodes represent (External) Keywords.
Signature:
export type TaxonomyNode = {
$type?: string;
Id?: string;
Title?: string;
AlternativeLabels?: Array<string>;
ChildNodes?: Array<TaxonomyNode>;
readonly Descendants?: number;
IsAbstract?: boolean;
};
References: TaxonomyNode