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.

Family: Other Transaction IDV
Category: Vendor Site Details
Data Type: boolean_or_code_flag
Semantic Type: flag
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative
Title
Is Small Agricultural Cooperative
FPDS Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorBusinessTypes/businessOrOrganizationType/isSmallAgriculturalCooperative
Description
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.
Business Meaning
This matters for socioeconomic and vendor-type segmentation in federal procurement analysis. Analysts use it to measure participation by small agricultural cooperatives, assess set-aside or eligibility-related reporting, and review awards flowing to specialized agricultural business entities.
Example Value
0
Observed Non-Null Count
13,417

FPDS Compare

FPDS Query Variable
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative
FPDS XML Path
OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorBusinessTypes/businessOrOrganizationType/isSmallAgriculturalCooperative
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionIDV/contractDetail/vendor/vendorSiteDetails/vendorBusinessTypes/businessOrOrganizationType/isSmallAgriculturalCooperative' into the SQL-ready variable 'content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative'.

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.