Interface DucCharterConstraint

A limiting condition that bounds the solution space.

Constraints define how the project can be executed or what solutions are permissible — not what the outcome must achieve (that's requirements). Explicit scope exclusions also belong here as hard constraints.

interface DucCharterConstraint {
    hard: boolean;
    id: string;
    statement: string;
}

Properties

Properties

hard: boolean

true — cannot be violated under any circumstance. false — strong preference; can be revisited with documented justification.

id: string
statement: string