Member Junction
    Preparing search index...

    Represents one related IS-A entity to display in the panel. Supports a tree structure via Children for nested sub-card rendering.

    interface IsaRelatedItem {
        Children: IsaRelatedItem[];
        Depth: number;
        EntityName: string;
        Relationship: "child" | "sibling";
    }
    Index

    Properties

    Children: IsaRelatedItem[]

    Child items nested under this entity in the IS-A hierarchy

    Depth: number

    Depth in the IS-A hierarchy relative to the form's entity (0 = direct, 1 = grandchild, etc.)

    EntityName: string

    The entity name (e.g., "Members", "Speakers")

    Relationship: "child" | "sibling"

    Relationship to the current form's entity