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

    Interface ActorNode

    A parliamentary or external actor node in the network. Used to represent MEPs, political groups, committees, or external stakeholders.

    interface ActorNode {
        id: string;
        name: string;
        type: ActorType;
        influence: number;
        connections: readonly string[];
    }
    Index

    Properties

    id: string

    Unique actor identifier.

    name: string

    Display name of the actor.

    type: ActorType

    Category of actor.

    influence: number

    Normalized influence score 0–1.

    connections: readonly string[]

    IDs of connected nodes in the network.