Contract Fund Code
NASA-specific code recorded on the award to identify the contract fund designation used for that action. It is an identifier/code field, not a free-text description, and the displayed value may be abbreviated or single-character coded.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter NASA awards by funding designation
- Join to a NASA code reference table or lookup
- Group awards for funding source analysis
Common Mistakes
- Assuming the code is a plain-language description
- Using the field without validating the agency-specific code set
Query Guidance
Use exact-match filtering or joins on the coded value, and preserve the raw code in group-by logic. If the dataset includes both code and description fields, select and display the paired description for interpretation; otherwise, map the code through an external NASA lookup table before reporting.
SQL Examples
Preview values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__contractFundCode AS contract_fund_code
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__contractFundCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__contractFundCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__contractFundCode 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.