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.

Family: Other Transaction Award
Category: Dollar Values
Data Type: numeric
Semantic Type: financial
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__OtherTransactionAward__contractDetail__dollarValues__nonGovernmentalDollars
Title
Non Governmental Dollars
FPDS Path
OtherTransactionAward/contractDetail/dollarValues/nonGovernmentalDollars
Description
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.
Business Meaning
This field helps analysts separate federal and non-federal funding in Other Transaction Awards, which is important for true cost visibility, partnership analysis, and market sizing. It supports evaluation of how much of an award is financed outside the federal government and helps distinguish total project value from direct federal obligation.
Example Value
0
Observed Non-Null Count
38,894

FPDS Compare

FPDS Query Variable
content__OtherTransactionAward__contractDetail__dollarValues__nonGovernmentalDollars
FPDS XML Path
OtherTransactionAward/contractDetail/dollarValues/nonGovernmentalDollars
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionAward/contractDetail/dollarValues/nonGovernmentalDollars' into the SQL-ready variable 'content__OtherTransactionAward__contractDetail__dollarValues__nonGovernmentalDollars'.

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.