Is Small Agricultural Cooperative
Boolean/code flag indicating whether the vendor is identified as a small agricultural cooperative on the award record. A value of 1/true means the condition applies; 0/false means it does not, with any other observed codes needing validation against the source data.
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 awards to vendors classified as small agricultural cooperatives
- Count or trend awards involving this vendor type over time
- Segment procurement analyses by vendor business type
Common Mistakes
- Assuming the field identifies all agricultural vendors rather than only those flagged as small agricultural cooperatives
- Treating null, blank, or nonstandard codes as false without checking source conventions
Query Guidance
Use an explicit predicate such as = 1, = 'Y', or the dataset's documented true code, and confirm the accepted code set in your extract. When aggregating, separate false from unknown/null so the absence of a flag is not misread as a negative classification.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative AS is_small_agricultural_cooperative
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative 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.