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.

Family: Other Transaction Award
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__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative
Title
Is Small Agricultural Cooperative
FPDS Path
OtherTransactionAward/contractDetail/vendor/vendorSiteDetails/vendorBusinessTypes/businessOrOrganizationType/isSmallAgriculturalCooperative
Description
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.
Business Meaning
This flag supports vendor classification, socioeconomic segmentation, and compliance reporting in procurement analysis. It helps analysts identify awards associated with agricultural cooperative suppliers and assess how often this vendor type appears across programs, agencies, or award vehicles.
Example Value
0
Observed Non-Null Count
38,894

FPDS Compare

FPDS Query Variable
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isSmallAgriculturalCooperative
FPDS XML Path
OtherTransactionAward/contractDetail/vendor/vendorSiteDetails/vendorBusinessTypes/businessOrOrganizationType/isSmallAgriculturalCooperative
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'OtherTransactionAward/contractDetail/vendor/vendorSiteDetails/vendorBusinessTypes/businessOrOrganizationType/isSmallAgriculturalCooperative' into the SQL-ready variable 'content__OtherTransactionAward__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

  • 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.