Riksdagsmonitor Intelligence Platform - v0.7.20
    Preparing search index...

    Interface AnalysisStakeholderSwot

    A SWOT matrix for a single stakeholder perspective. All text fields are AI-derived from document content analysis.

    interface AnalysisStakeholderSwot {
        name: string;
        role: KnownStakeholderRole | string & {};
        swot: {
            strengths: AnalysisSwotEntry[];
            weaknesses: AnalysisSwotEntry[];
            opportunities: AnalysisSwotEntry[];
            threats: AnalysisSwotEntry[];
        };
    }
    Index

    Properties

    Properties

    name: string

    Localised stakeholder name (Government, Parliament, Private Sector, etc.)

    role: KnownStakeholderRole | string & {}

    Internal role key for cross-language consistency

    swot: {
        strengths: AnalysisSwotEntry[];
        weaknesses: AnalysisSwotEntry[];
        opportunities: AnalysisSwotEntry[];
        threats: AnalysisSwotEntry[];
    }