Is International Organization
Boolean or coded flag indicating whether the vendor site is classified as an international organization. It captures the business type status recorded in the vendor site details section of the IDV hierarchy.
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 vendor records to international organizations
- Segment award counts and obligations by vendor organizational type
- Support compliance or exception reviews involving non-domestic entities
Common Mistakes
- Assuming the field is a free-text description rather than a flag/code
- Counting missing values as false without validating the source encoding
Query Guidance
In SQL, filter explicitly on the values used in your extract for true status, and map the field to a standardized boolean before aggregation. If the column is encoded, inspect distinct values first and, when available, join or coalesce with the paired human-readable description to avoid misclassification.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isInternationalOrganization AS is_international_organization
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isInternationalOrganization IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isInternationalOrganization AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isInternationalOrganization 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.