Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface RegulatoryChange

    interface RegulatoryChange {
        changeType:
            | "new_requirement"
            | "amendment"
            | "deprecation"
            | "guidance_update"
            | "enforcement_action"
            | "interpretation";
        contentHash: string;
        description: string;
        diff?: string;
        effectiveDate: number;
        framework: string;
        humanReviewed: boolean;
        id: string;
        impactedControls: string[];
        jurisdictions: string[];
        publishedDate: number;
        severity: "low"
        | "high"
        | "critical"
        | "medium";
        source: string;
        sourceType: "api" | "manual" | "rss" | "web_scrape";
        title: string;
    }
    Index
    changeType:
        | "new_requirement"
        | "amendment"
        | "deprecation"
        | "guidance_update"
        | "enforcement_action"
        | "interpretation"
    contentHash: string

    Hash of the source content for change detection

    description: string
    diff?: string

    Raw text diff from previous version (if amendment)

    effectiveDate: number
    framework: string
    humanReviewed: boolean

    Whether this has been reviewed by a human

    id: string
    impactedControls: string[]
    jurisdictions: string[]

    Jurisdictions affected

    publishedDate: number
    severity: "low" | "high" | "critical" | "medium"
    source: string
    sourceType: "api" | "manual" | "rss" | "web_scrape"
    title: string