Non Governmental Dollars
Monetary amount reported for the non-governmental share of an Other Transaction Award’s contract detail dollar values. It represents dollars contributed by private, state, local, academic, or other non-federal sources associated with the award.
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
- calculate non-federal funding totals
- compare federal vs. non-governmental share of awards
- analyze trends in leveraged or cost-shared financing
Common Mistakes
- assuming the value equals total award amount
- double-counting it with other dollar value fields from the same record
Query Guidance
Use as a numeric measure in SUM, AVG, and ratio calculations, typically grouped by fiscal year, agency, vendor, or award type. Filter or coalesce nulls carefully, and avoid adding it to federal funding fields unless you are explicitly reconstructing total project value from component amounts.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__dollarValues__nonGovernmentalDollars AS non_governmental_dollars
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__dollarValues__nonGovernmentalDollars IS NOT NULL
LIMIT 25
Aggregate total
SELECT
sum(content__OtherTransactionAward__contractDetail__dollarValues__nonGovernmentalDollars) AS total_value
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__dollarValues__nonGovernmentalDollars IS NOT NULL
Distribution overview
SELECT
min(content__OtherTransactionAward__contractDetail__dollarValues__nonGovernmentalDollars) AS min_value,
avg(content__OtherTransactionAward__contractDetail__dollarValues__nonGovernmentalDollars) AS avg_value,
max(content__OtherTransactionAward__contractDetail__dollarValues__nonGovernmentalDollars) AS max_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__dollarValues__nonGovernmentalDollars 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.