Is Small Agricultural Cooperative
Boolean flag indicating whether the vendor is identified in FPDS as a small agricultural cooperative. It is a classification attribute within the vendor’s business type information, not a performance or award outcome measure.
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 small agricultural cooperatives
- Count obligation totals by vendor business type
- Support socioeconomic and small business reporting
Common Mistakes
- Interpreting 0 as a definitive no when the value may also represent not reported in some extracts
- Using this field alone to classify all small business status without checking related vendor type indicators
Query Guidance
Filter on the flag value that represents yes in your extract, and explicitly test for nulls separately. In SQL, combine this field with other vendor type flags or descriptions when validating classifications, for example WHERE isSmallAgriculturalCooperative = 1, while also reviewing NULL and nonstandard coded values.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative AS is_small_agricultural_cooperative
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.