Receives Contracts and Grants
Boolean or coded flag indicating whether the vendor receives both federal contracts and federal grants. It reflects the vendor relationship category recorded on the award and may be stored as a simple yes/no value or a coded indicator depending on the extract.
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
- Segment vendors that have both contract and grant relationships with the federal government
- Filter awards for compliance, conflict review, or vendor portfolio analysis
- Compare procurement activity for mixed-funding vendors versus contract-only vendors
Common Mistakes
- Assuming the flag means the current record is a grant or a contract rather than a vendor relationship indicator
- Treating every non-1 value as a definitive no without checking for nulls, blanks, or coded responses
Query Guidance
Use explicit value checks such as = 1 for true/yes after confirming the stored code set. In SQL, isolate nulls separately from false or no, and if the extract includes coded text, map the observed codes before aggregation or filtering.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContractsAndGrants AS receives_contracts_and_grants
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContractsAndGrants IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContractsAndGrants AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContractsAndGrants 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.