Receives Contracts and Grants
Boolean or coded flag indicating whether the vendor receives both federal contracts and federal grants. In FPDS, this is a vendor relationship attribute captured at the vendor site level for the Other Transaction IDV 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
- Filter vendors that participate in both contracts and grants
- Segment vendor populations for compliance or oversight analysis
- Compare award patterns across vendors with mixed federal funding relationships
Common Mistakes
- Assuming the field means the vendor received a contract or a grant on this specific award rather than describing its broader federal relationship
- Filtering without checking the dataset's actual code values or null behavior
Query Guidance
Use this field as a categorical filter in WHERE clauses after validating the underlying code set in your FPDS extract. Example pattern: WHERE receivesContractsAndGrants IN ('1','Y',1) or equivalent after normalization; join or aggregate at the vendor-site level if you need vendor-level analysis.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContractsAndGrants AS receives_contracts_and_grants
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContractsAndGrants IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContractsAndGrants AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.