Receives Grants
Boolean or coded flag indicating whether the vendor receives grants. In FPDS this is a vendor relationship attribute stored under the vendor site’s relationship-to-federal-government details. The value may be represented as a simple yes/no indicator or a code-like flag, so analysts should verify observed values in the dataset.
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 receive grants
- segment supplier populations by federal funding relationship
- support compliance or dependency analysis
Common Mistakes
- assuming the field is free text rather than a flag
- treating null and false as the same without checking source encoding
Query Guidance
Use this field in WHERE clauses only after confirming the encoded values in your FPDS extract. For example, filter for the grant-receiving condition with an explicit true/yes value, and use DISTINCT or GROUP BY to validate how the flag is populated before building downstream metrics.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesGrants AS receives_grants
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesGrants IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesGrants AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.