AutoBE
    Preparing search index...

    Interface AnalyzeExtractedRequirementClaim

    A structured non-decision requirement claim extracted from Analyze prose.

    This is the per-file extractor output shape before the Requirements IR builder assigns a deterministic claimId.

    Juntak

    interface AnalyzeExtractedRequirementClaim {
        evidence?: string;
        kind: AnalyzeStructuredRequirementClaimKind;
        object?: string;
        predicate: string;
        sectionLocator?: AnalyzeRequirementClaimSectionLocator;
        statement: string;
        subject: string;
    }
    Index

    Properties

    evidence?: string

    Optional supporting prose from the source text.

    Non-decision claim discriminator.

    object?: string

    Optional object of the assertion. May be omitted when the kind has no natural object, but statement must remain non-empty.

    predicate: string

    Relationship or assertion type for the subject.

    Optional rendered-section locator. Metadata only, not true provenance.

    statement: string

    Full normalized natural-language claim statement.

    subject: string

    Main concept this claim is about.