EU Parliament Monitor - API Documentation - v0.7.19
    Preparing search index...

    Interface IntelligenceMindmap

    Complete intelligence mindmap data structure. Combines layered policy domain nodes, actor-network relationships, policy connections, and optional stakeholder perspective overlays.

    const imap: IntelligenceMindmap = {
    centralTopic: 'EU Climate Policy Intelligence',
    layers: [{ depth: 1, nodes: [{ id: 'envi', label: 'Environment', category: 'policy_domain', ... }] }],
    connections: [{ from: 'envi', to: 'econ', strength: 'strong', type: 'legislative', evidence: 'Green Deal' }],
    actorNetwork: [{ id: 'envi-cmt', name: 'ENVI Committee', type: 'committee', influence: 0.9, connections: [] }],
    stakeholderGroups: ['Industry', 'Civil Society', 'Member States'],
    };
    interface IntelligenceMindmap {
        centralTopic: string;
        layers: readonly MindmapLayer[];
        connections: readonly PolicyConnection[];
        actorNetwork: readonly ActorNode[];
        stakeholderGroups?: readonly string[];
        summary?: string;
    }
    Index

    Properties

    centralTopic: string

    Central topic label for the root node.

    layers: readonly MindmapLayer[]

    Ordered depth layers from domains (1) to outcomes (4).

    connections: readonly PolicyConnection[]

    Cross-cutting connections between nodes in different branches.

    actorNetwork: readonly ActorNode[]

    Actor-network nodes (MEPs, groups, committees, external).

    stakeholderGroups?: readonly string[]

    Optional stakeholder group labels for <details> overlay sections.

    summary?: string

    Optional summary rendered above the mindmap.