Is Small Agricultural Cooperative
Boolean or coded flag indicating whether the vendor associated with the transaction is identified as a small agricultural cooperative. The field records a specific business-status attribute for the vendor site’s business type classification.
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
- Count awards to vendors flagged as small agricultural cooperatives
- Segment vendor populations by agricultural cooperative status
- Support compliance or socioeconomic reporting filters
Common Mistakes
- Assuming 0 always means false without checking the dataset’s code convention
- Using this field as a standalone indicator of overall vendor size or eligibility
Query Guidance
Filter on the positive flag value after confirming the code mapping in your extract; for example, use the field in WHERE clauses to isolate cooperative vendors and in CASE expressions to build counts or percentages. If the field is stored as a code flag, normalize values first and join to any companion description field only when needed for display.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative AS is_small_agricultural_cooperative
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.