Non Federal Funding Amount

Monetary amount of non-federal funding associated with a NASA award record. It represents the portion of project financing coming from sources outside the federal government, as captured in the FPDS award data.

Family: Award
Category: General
Data Type: numeric
Semantic Type: financial
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__award__agencySpecificAwardElements__NASASpecificAwardElements__nonFederalFundingAmount
Title
Non Federal Funding Amount
FPDS Path
award/agencySpecificAwardElements/NASASpecificAwardElements/nonFederalFundingAmount
Description
Monetary amount of non-federal funding associated with a NASA award record. It represents the portion of project financing coming from sources outside the federal government, as captured in the FPDS award data.
Business Meaning
This field helps analysts identify the full funding structure of NASA awards and distinguish federal obligation amounts from leveraged outside funding. It supports spend analysis, portfolio sizing, and assessment of how much total project value is supported by non-federal contributions.
Example Value
0
Observed Non-Null Count
256,419

FPDS Compare

FPDS Query Variable
content__award__agencySpecificAwardElements__NASASpecificAwardElements__nonFederalFundingAmount
FPDS XML Path
award/agencySpecificAwardElements/NASASpecificAwardElements/nonFederalFundingAmount
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'award/agencySpecificAwardElements/NASASpecificAwardElements/nonFederalFundingAmount' into the SQL-ready variable 'content__award__agencySpecificAwardElements__NASASpecificAwardElements__nonFederalFundingAmount'.

Use Cases

  • Dictionary lookup and field explanation
  • SQL filtering and grouping
  • Analytical reporting and reusable query building
  • Spending aggregation and trend analysis

Common Usage

  • Measure non-federal leverage in NASA-funded awards
  • Compare total project financing across awards
  • Segment awards by presence or size of outside funding

Common Mistakes

  • Treating it as the total award value instead of only the non-federal portion
  • Summing it with federal obligation fields without checking for double counting

Query Guidance

Filter and aggregate as a numeric amount field, using COALESCE only when appropriate for null handling. Join or compare it with award obligation or total value fields only after confirming the reporting scope, and exclude zero or null values when analyzing only awards with reported non-federal contributions.

SQL Examples

Preview values

SELECT
    content__award__agencySpecificAwardElements__NASASpecificAwardElements__nonFederalFundingAmount AS non_federal_funding_amount
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__nonFederalFundingAmount IS NOT NULL
LIMIT 25

Aggregate total

SELECT
    sum(content__award__agencySpecificAwardElements__NASASpecificAwardElements__nonFederalFundingAmount) AS total_value
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__nonFederalFundingAmount IS NOT NULL

Distribution overview

SELECT
    min(content__award__agencySpecificAwardElements__NASASpecificAwardElements__nonFederalFundingAmount) AS min_value,
    avg(content__award__agencySpecificAwardElements__NASASpecificAwardElements__nonFederalFundingAmount) AS avg_value,
    max(content__award__agencySpecificAwardElements__NASASpecificAwardElements__nonFederalFundingAmount) AS max_value,
    count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__nonFederalFundingAmount IS NOT NULL

Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.