AutoBE
    Preparing search index...

    Interface AnalyzeRequirementsIRView

    Run-level snapshot of analyze's structured requirement claims, attached to AutoBeAnalyzeHistory.document.requirementsIR and AutoBeAnalyzeCompleteEvent.requirementsIR.

    Contains the SRS requirement registry, structured claims, and an optional TOC navigation context. Each claim carries SRS contract semantics such as support, obligation, acceptance criteria, verification method, priority, and status. Per-file grouping, conflict status, version, and confidence flags are deliberately excluded — see the spec's "거짓 신호 회피" principle.

    Juntak

    interface AnalyzeRequirementsIRView {
        claims: AnalyzeRequirementClaim[];
        projections?: AnalyzeRequirementProjection[];
        requirements: AnalyzeSrsRequirement[];
        toc?: AnalyzeRequirementsIRToc;
    }
    Index

    Properties

    Requirement claims in the order produced by the builder. Decision claims preserve input decision order (mirrors AnalyzeDecisionLedger.dumpValidDecisions() insertion order); structured non-decision claims follow in file/extractor output order. 00-toc.md claims are excluded by the builder — TOC is navigation context, not a claim.

    Additive projection edges from claims back to rendered Analyze sections. New producers emit an empty array when no projected claims exist. Optional because callers may build minimal claim snapshots without projection data.

    requirements: AnalyzeSrsRequirement[]

    Authoritative machine-readable SRS requirement registry for this analyze run. Producers emit this from scenario defaults, decisions, and structured claims.

    Optional TOC navigation context. Absent when the run produced no TOC, or when reading an older history that pre-dates this feature.