Receives Contracts and Grants
Boolean or coded flag indicating whether the vendor is identified as receiving both federal contracts and federal grants. It is a relationship attribute at the vendor-site level under vendor relationship with the federal government.
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 participate in both contracts and grants
- Segment vendor populations for compliance or risk analysis
- Profile vendor relationships with the federal government
Common Mistakes
- Interpreting the flag as award-level receipt of grants rather than a vendor relationship attribute
- Assuming missing values are equivalent to 0 without checking dataset conventions
Query Guidance
In SQL, use this field as a filter on the vendor-site relationship flag, e.g., WHERE receivesContractsAndGrants = 1 or the dataset’s equivalent coded value. When values are coded or inconsistently populated, first inspect distinct values and any description fields, then standardize before analysis.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContractsAndGrants AS receives_contracts_and_grants
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContractsAndGrants IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContractsAndGrants AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.