Member Junction
    Preparing search index...

    Tree node representing a tag in its hierarchical taxonomy. Used for serializing the tag hierarchy to LLM prompts.

    interface TagTreeNode {
        Children: TagTreeNode[];
        Description: string;
        DisplayName: string;
        ID: string;
        Name: string;
    }
    Index

    Properties

    Children: TagTreeNode[]

    Child tags in the hierarchy

    Description: string

    Optional description of the tag

    DisplayName: string

    The human-readable display name

    ID: string

    The unique identifier of the tag

    Name: string

    The internal name of the tag