GFE/GFP
Boolean or coded indicator showing whether Government Furnished Equipment/Government Furnished Property is used in the contract. It identifies the presence of GFE/GFP conditions in the award's contract data and may be stored as a simple flag such as Y/N or an equivalent coded value.
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 that include government-furnished property or equipment
- Segment contracts for compliance or risk analysis
- Compare contract patterns across awards with and without GFE/GFP
Common Mistakes
- Assuming the field indicates the dollar amount or type of property
- Filtering only on Y without checking whether the source uses other coded representations
Query Guidance
Use this field in WHERE clauses to isolate awards with GFE/GFP, matching the exact stored code values in your FPDS extract. Example pattern: WHERE content__award__contractData__GFE_GFP = 'Y'; if nulls or alternate codes exist, add explicit handling such as COALESCE or an IN list after confirming the domain.
SQL Examples
Preview values
SELECT
content__award__contractData__GFE_GFP AS g_f_e_g_f_p
FROM fpds.data
WHERE content__award__contractData__GFE_GFP IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__contractData__GFE_GFP AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__GFE_GFP IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.