GFE / GFP Description
Human-readable description for the paired GFE/GFP code in the IDV contract record. It states whether government-furnished equipment or government-furnished property is used and, when present, explains the coded value in plain language.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Identify whether an IDV involves government-furnished equipment or property
- Separate awards that use GFE/GFP from those that do not
- Support compliance or property-management reviews
Common Mistakes
- Using the description alone without checking the paired code or source value
- Assuming all nonblank text indicates a positive GFE/GFP condition
Query Guidance
Use this field as a text descriptor for reporting, classification, or validation; filter with LIKE/ILIKE on known phrases only when necessary. For analysis, join or compare it with the paired GFE/GFP code field rather than relying on the description alone, and normalize nulls and variant wording before aggregating.
SQL Examples
Preview values
SELECT
content__IDV__contractData__GFE_GFP__description AS g_f_e_g_f_p_description
FROM fpds.data
WHERE content__IDV__contractData__GFE_GFP__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractData__GFE_GFP__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__GFE_GFP__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.