Receives Contracts
Boolean or coded indicator showing whether the vendor is identified as receiving federal contracts. It represents a relationship attribute in the vendor site details portion of the award record, not a contract award amount or obligation measure.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Filter vendors that are marked as federal contract recipients
- Segment award populations for reporting or compliance reviews
- Compare outcomes for vendors with and without prior federal contracting status
Common Mistakes
- Using the field as a count or dollar measure instead of a flag
- Assuming 0 always means the vendor never receives contracts without checking the source value set
Query Guidance
In SQL, filter explicitly for the affirmative value used in your dataset after confirming the code set, for example WHERE receivesContracts IN (1, 'Y', 'true'). If the column is stored as mixed codes, standardize it with CASE logic and validate against the raw XML or companion description values.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContracts AS receives_contracts
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContracts IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContracts AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContracts 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.