Briefings chips system
The V2 Briefing API uses a chip system to create interactive, clickable elements in the briefing text.

There are two types of chips:
1. Affected Elements Chips
Affected elements chips highlight specific airport infrastructure or airspace elements mentioned in NOTAMs.
How They're Built
Affected elements chips are automatically generated from NOTAM interpretation data using the format:
Examples
Chip Components
Label: Human-readable element description (e.g., "RWY 11/29")
URL: Structured link for frontend routing
icao: Airport ICAO codeelement_type: Type of infrastructure (RWY, TWY, ILS, etc.)identifier: Specific element identifier
Usage in Frontend
Frontend applications can parse these chips to:
Highlight elements on airport diagrams
Show detailed element information
Create interactive maps
Filter NOTAMs by affected elements
2. NOTAM Chips
NOTAM chips provide direct links to the source NOTAM documents.
How They're Built
NOTAM chips are generated using the format:
If no NOTAM number is available, the NOTAM ID is used as the label:
Examples
Chip Components
Label: NOTAM number (e.g., "A1234/25") or NOTAM ID if number unavailable
URL: Direct NOTAM ID for document retrieval
Usage in Frontend
Frontend applications can use NOTAM chips to:
Link to full NOTAM details
Show NOTAM metadata (validity, coordinates, etc.)
Display original ICAO message
Track NOTAM history and updates
Complete Briefing Example
Here's an example of a complete briefing with both chip types:
Implementation Guide
Parsing Chips in Frontend
Rendering Chips as Interactive Elements
Last updated