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

    Interface PoliticalConsequenceTree

    Political consequence tree — adapted from attack trees in ISMS threat modeling.

    Traces how a root political action cascades through institutions and actors, including mitigating and amplifying factors that affect overall impact.

    interface PoliticalConsequenceTree {
        rootAction: string;
        immediateConsequences: readonly ConsequenceNode[];
        secondaryEffects: readonly ConsequenceNode[];
        longTermImplications: readonly ConsequenceNode[];
        mitigatingFactors: readonly string[];
        amplifyingFactors: readonly string[];
    }
    Index

    Properties

    rootAction: string

    The initiating political action being analysed

    immediateConsequences: readonly ConsequenceNode[]

    Direct, near-term consequences (days to weeks)

    secondaryEffects: readonly ConsequenceNode[]

    Secondary effects triggered by immediate consequences (weeks to months)

    longTermImplications: readonly ConsequenceNode[]

    Long-term structural implications (months to years)

    mitigatingFactors: readonly string[]

    Factors that could reduce the severity or probability of consequences

    amplifyingFactors: readonly string[]

    Factors that could increase the severity or probability of consequences