Foreign Funding Description
Human-readable description paired with the coded Foreign Funding field for an IDV purchaser information record. It states the funding status in plain language, such as "NOT APPLICABLE," rather than the underlying code.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Display the funding status in reports and dashboards
- Translate coded foreign funding values into readable labels
- Filter IDVs by foreign funding status for compliance analysis
Common Mistakes
- Using the description as if it were the authoritative code value
- Grouping records on the description without checking for multiple labels that map to the same underlying code
Query Guidance
Join or select this field alongside the paired Foreign Funding code and use the description for display, validation, and grouping only after confirming label consistency. In SQL, prefer filtering on the code when available and use the description for human-readable output, for example in SELECT lists or CASE-based standardization.
SQL Examples
Preview values
SELECT
content__IDV__purchaserInformation__foreignFunding__description AS foreign_funding_description
FROM fpds.data
WHERE content__IDV__purchaserInformation__foreignFunding__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__purchaserInformation__foreignFunding__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__purchaserInformation__foreignFunding__description 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.