AutoBE
    Preparing search index...

    Interface AnalyzeStructuredRequirementClaim

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

    Identity inputs (used to derive claimId):

    • kind
    • fileKey (trim, case preserved)
    • subject (trim + lowercase + whitespace collapse)
    • predicate (trim + lowercase + whitespace collapse)
    • object (trim + lowercase + whitespace collapse, empty when absent)
    • statement (trim + lowercase + whitespace collapse)

    Juntak

    interface AnalyzeStructuredRequirementClaim {
        acceptanceCriteria: string[];
        claimId: string;
        evidence?: string;
        fileKey: string;
        kind: AnalyzeStructuredRequirementClaimKind;
        object?: string;
        obligation: AnalyzeRequirementObligation;
        predicate: string;
        priority: AnalyzeRequirementPriority;
        sectionLocator?: AnalyzeRequirementClaimSectionLocator;
        statement: string;
        status: AnalyzeRequirementStatus;
        subject: string;
        support: AnalyzeRequirementSupport;
        verification: AnalyzeRequirementVerificationMethod;
    }
    Index

    Properties

    acceptanceCriteria: string[]

    Acceptance checks stated or implied by this claim.

    claimId: string

    Deterministic id. Format: <kind>:<16 hex chars>. Built by buildClaimId.

    evidence?: string

    Optional supporting prose extracted with the claim.

    fileKey: string

    Source filename (e.g., "04-requirements.md"). Always non-TOC.

    Additive 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.

    Downstream implementation obligation for this claim.

    predicate: string

    Relationship or assertion type for the subject.

    Product priority within the generated SRS.

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

    statement: string

    Full natural-language claim statement. Identity input.

    Requirement lifecycle status.

    subject: string

    Main concept this claim is about.

    Source-support classification for SRS contract interpretation.

    Verification method best suited for this claim.