Receives Grants
Boolean or coded indicator showing whether the vendor entity associated with the award receives federal grants. It captures a vendor relationship with the federal government, not the award action itself, and may appear as a flag value such as 0/1 or a similar coded representation.
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 receive federal grants
- support compliance or relationship-based vendor profiling
- compare procurement awardees with hybrid grant-and-contract funding
Common Mistakes
- treating the flag as describing the award rather than the vendor relationship
- assuming all zeros mean the vendor has no federal relationship when the field may be missing or inconsistently coded
Query Guidance
Filter on the normalized indicator value after checking the source encoding in your extract. Use explicit null handling and code mapping, for example CASE statements to convert 0/1, Y/N, or other observed codes into a single analytic flag before aggregation or joins.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesGrants AS receives_grants
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesGrants IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesGrants AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesGrants 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.