Receives Grants
Boolean or coded flag indicating whether the vendor receives federal grants. It captures a vendor relationship attribute at the vendor site level within an Other Transaction Award record.
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 assistance
- support compliance or conflict screening workflows
- analyze vendor population characteristics across award records
Common Mistakes
- interpreting the flag as a grant award indicator rather than a vendor attribute
- assuming the code is always stored as 1 without checking the dataset's actual encoding
Query Guidance
Filter on the observed affirmative code for this boolean field, and verify whether the source stores values as 0/1, Y/N, or another coded representation. If a description field is available, use it to confirm meaning; when aggregating, deduplicate at the vendor site or award level as appropriate to avoid double counting.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesGrants AS receives_grants
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesGrants IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesGrants AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.