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.

Family: Award
Category: Contract Data
Data Type: boolean_or_code_flag
Semantic Type: flag
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__award__contractData__GFE_GFP
Title
GFE/GFP
FPDS Path
award/contractData/GFE_GFP
Description
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.
Business Meaning
This field helps analysts identify awards that rely on government-provided property or equipment, which can affect contract scope, pricing, contractor responsibility, logistics, and risk. It is useful for compliance checks, segmentation of contract types, and analyzing awards with special government-furnished asset arrangements.
Example Value
Y
Observed Non-Null Count
111,506,237

FPDS Compare

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

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.