Is Foreign Government
Boolean or coded flag indicating whether the vendor site is classified as a foreign government. It is a site-level business-type attribute stored under vendor business details in the IDV record.
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
- Exclude or isolate foreign-government vendors in compliance analysis
- Segment supplier base by institutional type
- Support reporting on non-domestic or sovereign counterparties
Common Mistakes
- Assuming the field means the vendor is simply non-U.S. rather than specifically a foreign government
- Filtering without checking whether the extract uses numeric, text, or null-coded representations
Query Guidance
Use this field in WHERE clauses to filter on the recorded flag value after confirming the coding in your extract, for example by checking distinct values first. Join and aggregate at the vendor-site level when analyzing entity type, and avoid treating nulls as false unless your data rules explicitly define them that way.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__isForeignGovernment AS is_foreign_government
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__isForeignGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__isForeignGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__isForeignGovernment 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.