Is Federal Government
Boolean or coded flag indicating whether the vendor is a federal government entity at the vendor site level in the IDV record. A value such as 0 typically means the condition is not met; analysts should verify the observed code set in the extract rather than assume only true/false text values.
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 federal government entities from commercial vendor counts
- Segment IDVs involving government-to-government relationships
- Support compliance and supplier classification checks
Common Mistakes
- Assuming a value of 0 always means false without confirming the extract's encoding
- Using the field alone to classify the entire vendor without reviewing related vendor business type flags
Query Guidance
Filter on the stored code representing a true federal government match after confirming the dataset encoding, for example WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernment = 1 or the equivalent true value in your extract. When building segments, pair this field with related vendor business type indicators and avoid comparing it as free text unless the source is explicitly string-typed.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernment AS is_federal_government
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernment 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.