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

    Interface SwotAnalysis

    Complete SWOT analysis data structure. Used by agentic workflows to generate strategic analysis visualizations for any article type using data from European Parliament MCP or other sources.

    const swot: SwotAnalysis = {
    title: 'Digital Markets Act — Strategic Assessment',
    strengths: [{ text: 'Broad political support', severity: 'high' }],
    weaknesses: [{ text: 'Complex enforcement mechanisms', severity: 'medium' }],
    opportunities: [{ text: 'Global regulatory leadership', severity: 'high' }],
    threats: [{ text: 'Industry lobbying resistance', severity: 'medium' }],
    };
    interface SwotAnalysis {
        title?: string;
        strengths: readonly SwotItem[];
        weaknesses: readonly SwotItem[];
        opportunities: readonly SwotItem[];
        threats: readonly SwotItem[];
    }
    Index

    Properties

    title?: string

    Optional title for the SWOT analysis

    strengths: readonly SwotItem[]

    Internal strengths — positive factors within EU Parliament control

    weaknesses: readonly SwotItem[]

    Internal weaknesses — negative factors within EU Parliament control

    opportunities: readonly SwotItem[]

    External opportunities — positive external factors

    threats: readonly SwotItem[]

    External threats — negative external factors