GFE/GFP
Indicates whether Government-Furnished Equipment (GFE) or Government-Furnished Property (GFP) is used in the IDV contract record. The value is typically a flag or coded indicator rather than a narrative description, so it should be interpreted as a yes/no-style data element unless the source provides additional coded detail.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter IDVs that involve government-furnished equipment or property
- Segment awards for compliance, property management, or logistics analysis
- Compare contract structure and risk patterns across records with and without GFE/GFP
Common Mistakes
- Assuming the field lists the specific equipment or property rather than only indicating presence
- Treating the value as standardized across all extracts without checking the actual code set
Query Guidance
Use this field in WHERE clauses to isolate records flagged for GFE/GFP involvement, but first inspect the observed values and normalize them to a common Boolean interpretation if needed. In SQL, compare against the dataset’s actual affirmative code(s) and exclude nulls separately when distinguishing unknown from false.
SQL Examples
Preview values
SELECT
content__IDV__contractData__GFE_GFP AS g_f_e_g_f_p
FROM fpds.data
WHERE content__IDV__contractData__GFE_GFP IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__contractData__GFE_GFP AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.