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.

Family: Award
Category: Contract Data
Data Type: string
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__award__contractData__contractFinancing
Title
Contract Financing
FPDS Path
award/contractData/contractFinancing
Description
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.
Business Meaning
This field helps analysts identify awards that include financing arrangements, which can affect cash flow timing, contract administration, and risk profiles. It is useful for segmenting awards by financing terms when comparing procurement structure, vendor financing use, or contract management patterns.
Example Value
Z
Observed Non-Null Count
62,145,389

FPDS Compare

FPDS Query Variable
content__award__contractData__contractFinancing
FPDS XML Path
award/contractData/contractFinancing
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'award/contractData/contractFinancing' into the SQL-ready variable 'content__award__contractData__contractFinancing'.

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.