National Interest Action Code

A code indicating whether the award is being made under a national interest action. It records the specific national-interest basis used for the contract, rather than a narrative explanation.

Family: Award
Category: Contract Data
Data Type: identifier_or_code
Semantic Type: identifier
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__award__contractData__nationalInterestActionCode
Title
National Interest Action Code
FPDS Path
award/contractData/nationalInterestActionCode
Description
A code indicating whether the award is being made under a national interest action. It records the specific national-interest basis used for the contract, rather than a narrative explanation.
Business Meaning
This field helps analysts identify awards that received special treatment because of national security, urgency, or other government-determined national interest considerations. It is useful for separating standard procurement activity from actions that may have unusual approval, justification, or reporting requirements.
Example Value
NONE
Observed Non-Null Count
89,633,948

FPDS Compare

FPDS Query Variable
content__award__contractData__nationalInterestActionCode
FPDS XML Path
award/contractData/nationalInterestActionCode
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'award/contractData/nationalInterestActionCode' into the SQL-ready variable 'content__award__contractData__nationalInterestActionCode'.

Use Cases

  • Dictionary lookup and field explanation
  • SQL filtering and grouping
  • Analytical reporting and reusable query building

Common Usage

  • Filter awards with national-interest handling
  • Compare procurement patterns for special-authority actions
  • Support compliance or oversight reviews

Common Mistakes

  • Assuming the value explains the reason in full narrative form
  • Aggregating codes without checking whether 'NONE' or blanks indicate no national interest action

Query Guidance

Use this field as a categorical filter in WHERE clauses and GROUP BYs, for example to isolate 'NONE' versus non-none values. When joining or reporting, normalize case and test for nulls, blanks, and sentinel codes so special-interest awards are not misclassified.

SQL Examples

Preview values

SELECT
    content__award__contractData__nationalInterestActionCode AS national_interest_action_code
FROM fpds.data
WHERE content__award__contractData__nationalInterestActionCode IS NOT NULL
LIMIT 25

Top values

SELECT
    content__award__contractData__nationalInterestActionCode AS value,
    count() AS record_count
FROM fpds.data
WHERE content__award__contractData__nationalInterestActionCode 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.