AutoBE
    Preparing search index...

    Interface AnalyzeRequirementClaimSectionLocator

    Rendered-section locator for a requirement claim extracted from Analyze Markdown.

    This is not true requirement provenance. It identifies where a claim was observed in the rendered Analyze section hierarchy so future projection and repair passes can relate claims back to analyze.document.files.

    Juntak

    interface AnalyzeRequirementClaimSectionLocator {
        contentHash: string;
        fileKey: string;
        moduleIndex: number;
        sectionId: string;
        sectionIndex: number;
        sectionTitle: string;
        type: "analyze_section_locator";
        unitIndex: number;
    }
    Index

    Properties

    contentHash: string

    Drift-detection hash over section title + content at extraction time.

    fileKey: string

    Source filename, matching AutoBeAnalyze.IFile.filename.

    moduleIndex: number

    Zero-based module index in the rendered Analyze hierarchy.

    sectionId: string

    Deterministic private id generated by code from the rendered section hierarchy. The LLM may echo this value but must not invent it.

    sectionIndex: number

    Zero-based section index within the unit's sectionSections.

    sectionTitle: string

    Section title at extraction time.

    type: "analyze_section_locator"

    Rendered Analyze section locator discriminator.

    unitIndex: number

    Zero-based unit index in the rendered Analyze hierarchy.