Contract Financing
Indicator showing whether contract financing is provided on the award. The value is typically a coded or abbreviated flag rather than a full narrative description, and it identifies the financing status recorded in the Contract Data section.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter awards with or without financing
- Group obligations by financing status
- Compare contract structures across agencies or periods
Common Mistakes
- Assuming the value is a human-readable label
- Interpreting a single code without checking the field's code set or companion description
Query Guidance
Use the field as a categorical filter or GROUP BY dimension after validating the actual code values present in your data. If the extract includes both code and description columns, join or display the description for reporting, and use DISTINCT or frequency checks to confirm whether values are standardized or agency-specific.
SQL Examples
Preview values
SELECT
content__award__contractData__contractFinancing AS contract_financing
FROM fpds.data
WHERE content__award__contractData__contractFinancing IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__contractData__contractFinancing AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__contractFinancing 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.