EU Parliament Monitor — API Documentation - v0.8.6
    Preparing search index...

    Interface ConsequenceNode

    A single node in a political consequence tree — adapted from attack trees. Represents a downstream effect of a political action at a specific timeframe.

    interface ConsequenceNode {
        description: string;
        probability: number;
        impact: ImpactLevel;
        affectedStakeholders: readonly PoliticalActorType[];
        timeframe: "immediate" | "short-term" | "medium-term" | "long-term";
    }
    Index

    Properties

    description: string

    Human-readable description of the consequence

    probability: number

    Estimated probability of this consequence materialising (0–1)

    impact: ImpactLevel

    Impact severity if the consequence occurs

    affectedStakeholders: readonly PoliticalActorType[]

    Stakeholder groups affected by this consequence

    timeframe: "immediate" | "short-term" | "medium-term" | "long-term"

    Expected timeframe for this consequence to materialise