Is International Organization
Boolean or coded flag indicating whether the vendor’s business or organization type is an international organization in this Other Transaction IDV record. It identifies the organizational classification attached to the vendor site details rather than the award action itself.
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 records where the vendor is classified as an international organization
- Segment supplier profiles by organization type for compliance or reporting
- Exclude or isolate international organizations in domestic vendor analyses
Common Mistakes
- Interpreting the flag as nationality or country of performance instead of vendor organization type
- Assuming the stored value is always numeric when some extracts may use text codes
Query Guidance
Use explicit comparisons against the observed true value in the extract, and confirm whether null means unknown or not applicable. Example pattern: WHERE isInternationalOrganization IN ('1','Y',1) after validating the source encoding; if a companion description exists, use it to verify classification and avoid misreading coded values.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isInternationalOrganization AS is_international_organization
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isInternationalOrganization IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__businessOrOrganizationType__isInternationalOrganization AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.