Receives Contracts
Boolean or coded flag indicating whether the vendor relationship record is marked as receiving government contracts. It captures a yes/no-style attribute at the vendor site level within the Other Transaction IDV structure. If stored as a code, the observed value should be interpreted using the dataset's actual code set.
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 federal contracts
- Segment vendor populations for compliance or eligibility analysis
- Profile vendor-government relationship attributes at the site level
Common Mistakes
- Assuming the value is always a true boolean when it may be stored as a code
- Using the field as a count or monetary measure instead of a flag
Query Guidance
Use equality filters or CASE logic based on the observed code set, for example WHERE receivesContracts IN ('1','Y','true') after verifying the actual values in the source. If you need a yes/no output, normalize the field in a CASE expression and avoid aggregating it without first converting to a consistent binary representation.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContracts AS receives_contracts
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContracts IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContracts AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorRelationshipWithFederalGovernment__receivesContracts 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.