Skip to main content

Values

IDLabelSort OrderColorHex CodeIcon
draftDraft1Blue#3366FF/polarion/ria/images/status/draft.png
inProgressIn Progress2/polarion/ria/images/status/inProgress.png
inReviewIn Review4Pale Yellow#FFFF99/polarion/ria/images/status/inReview.png
pendingApprovalPending Approval5Bright Yellow#FFFF33/polarion/ria/images/status/pendingApproval.png
approvedApproved6Green#66FF66/polarion/ria/images/status/approved.png
rejectedRejected7Red#FF3300/polarion/ria/images/status/rejected.png
obsoleteObsolete8/polarion/ria/images/status/obsolete.png

Workflow Diagram

diagram

Primary Path

  1. Draft — Newly created system element. No review or approval process has begun.
  2. In Progress — Active work on the system element definition (threat surfaces, system boundaries).
  3. In Review — Submitted for peer or stakeholder review.
  4. Pending Approval — Review complete; awaiting formal approval sign-off.
  5. Approved — Formally approved and considered stable for use in TARA analysis.

Branch Paths

  • Rejected — Element was reviewed and rejected; requires rework. Returns to In Progress for correction.
  • Obsolete — Element is no longer active or relevant. Retained for historical traceability.

Field Binding

PropertyValue
Field IDstatus
Work Item TypesystemElement
Enum IDsystemElement-status
Field TypeEnum (single-select)

Color Semantics

The color assignments encode urgency and completion semantics:
SemanticColorStates
New/NeutralBlue (#3366FF)draft
Active workNo color (default)inProgress
Attention neededPale Yellow (#FFFF99)inReview
Urgent actionBright Yellow (#FFFF33)pendingApproval
Complete/PositiveGreen (#66FF66)approved
Failed/NegativeRed (#FF3300)rejected
ArchivedNo color (default)obsolete
These hex values serve as the canonical status color palette for system element entities. Risksheet and PowerSheet cell decorators binding to the status field use these values for consistent color coding.

Lucene Queries

type:systemElement AND status:draft
type:systemElement AND status:inProgress
type:systemElement AND status:inReview
type:systemElement AND status:pendingApproval
type:systemElement AND status:approved
type:systemElement AND status:rejected
type:systemElement AND NOT status:obsolete

Common Dashboard Patterns

Dashboard NeedQuery
Review queuetype:systemElement AND status:inReview
Approval queuetype:systemElement AND status:pendingApproval
Active baselinetype:systemElement AND status:approved
Needing reworktype:systemElement AND status:rejected
All active (exclude archived)type:systemElement AND NOT status:obsolete

Traceability Implications

StatusTraceability Treatment
approvedCounts toward baseline. Included in coverage and traceability completeness calculations.
rejectedExcluded from traceability completeness. Does not count toward coverage metrics.
obsoleteExcluded from active analysis views. Retained for historical reference only.
All othersIn-progress statuses. May or may not be included in coverage calculations depending on project policy.

Configuration Notes

  • A gap exists at sort order 3 between inProgress (2) and inReview (4), suggesting a status value may have been removed from the workflow in a previous configuration revision.
  • inProgress and obsolete have no color attribute defined. Cell decorators should handle null/missing color gracefully by applying a default neutral style.
  • This seven-state lifecycle pattern is shared with other TARA work item types. The taraRecord and cybersecurityGoal types use similar draft/approved/rejected patterns.
  • Permitted state transitions (e.g., whether rejected can return to draft or only to inProgress) are defined in the Polarion workflow configuration, not in the enum file itself.