Contract Financing Description
Human-readable text that describes the contract financing method or conditions recorded for an award. It is the descriptive label paired with the coded "Contract Financing" field and is used to clarify the financing value reported in FPDS.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Decode the financing code into a readable label
- Validate reported financing status in award records
- Review awards with special financing terms or exclusions
Common Mistakes
- Using the description field as if it were the authoritative coded value
- Aggregating this text field without pairing it to the underlying contract financing code
Query Guidance
Use this column for display, filtering by known text values, and joining to the paired financing code when available. In SQL, prefer grouping or counting by the coded field and use this description for labels; if the dataset contains multiple spellings or abbreviations, inspect distinct values first to standardize before analysis.
SQL Examples
Preview values
SELECT
content__award__contractData__contractFinancing__description AS contract_financing_description
FROM fpds.data
WHERE content__award__contractData__contractFinancing__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__contractData__contractFinancing__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__contractFinancing__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.