National Interest Action Code Description
Human-readable description paired to the coded National Interest Action Code on an IDV record. It identifies the text label that explains the underlying code value stored in the related national interest action field.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Decode the National Interest Action Code for reporting
- Filter awards with or without a national interest action
- Group IDVs by national interest action status
Common Mistakes
- Using the description field as if it were the underlying code field
- Assuming every description is standardized without checking observed values
Query Guidance
Use this field for display, labeling, or descriptive grouping, but filter and join on the paired code field when possible. In SQL, select both the code and description together, and use COALESCE or CASE logic only after confirming the value patterns in the source data.
SQL Examples
Preview values
SELECT
content__IDV__contractData__nationalInterestActionCode__description AS national_interest_action_code_description
FROM fpds.data
WHERE content__IDV__contractData__nationalInterestActionCode__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractData__nationalInterestActionCode__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__nationalInterestActionCode__description IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.