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.
FPDS Compare
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.