Status

Description

Status elements display status indicators with customizable text and colors within ADF documents. They provide visual cues for project states, task completion, approval workflows, and other categorical information. Status elements support various color schemes as defined in the Atlassian Document Format specification.

.md markdown syntax

Basic Status

Status: {status:Complete}
Status: {status:In Progress}
Status: {status:Blocked}

Status with Inline Color Attributes

{status:Ready for Review|color:green}
{status:Needs Attention|color:red}
{status:In Progress|color:yellow}
{status:Available|color:blue}
{status:High Priority|color:purple}
{status:Draft|color:neutral}

Legacy Status with Metadata Comments (Backward Compatibility)

Multiple Status Types

Syntax Comparison

Feature
Inline Syntax
Legacy Metadata Syntax

Conciseness

{status:Done|color:green}

<!-- adf:status color="green" -->{status:Done}

Readability

✅ Single line, clear intent

❌ Two lines, less readable

Round-trip

✅ Perfect preservation

✅ Perfect preservation

User-friendly

✅ Easy to write and remember

❌ Verbose, hard to remember

Compatibility

✅ Works with all colors

✅ Works with all colors

Recommendation: Use the inline syntax {status:text|color:value} for new content. Legacy syntax is maintained for backward compatibility.

.adf-schema.json schema

Examples

Project Status

Task Management

Approval Workflow

Quality Assurance

Release Pipeline

Bug Tracking

Feature Flags

Team Availability

Environment Health

Content Status

Priority Levels

Compliance Status

Training Progress

Inventory Status

Last updated