Member Junction
    Preparing search index...

    A single proposed taxonomy node returned by generateSeedTaxonomy. Forms a hierarchical tree (top-level = named clusters; optional second level = representative sub-themes). Nothing here is persisted — callers decide whether to materialize these as formal Tags.

    interface SeedTaxonomyNode {
        Children?: SeedTaxonomyNode[];
        Description?: string;
        MemberCount?: number;
        Name: string;
    }
    Index

    Properties

    Children?: SeedTaxonomyNode[]

    Child nodes (second-level sub-themes). Empty/omitted for leaf nodes.

    Description?: string

    Optional short description / rationale for the proposed tag.

    MemberCount?: number

    Number of source content items that contributed to this node (top-level only).

    Name: string

    Proposed tag name (LLM-generated cluster theme or sub-theme).