Is Federal Government
Boolean or coded flag indicating whether the vendor site is classified as a federal government entity. It is a condition field under vendor business types and is used to identify vendor records that meet the federal government criterion. The value may appear as a binary indicator or a coded representation depending on the FPDS extract.
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 awards made to federal government entities
- Segment vendor population by entity type
- Support compliance and interagency spend analysis
Common Mistakes
- Treating the flag as an award attribute instead of a vendor-site classification
- Assuming all non-1 values mean false without checking null, blank, or coded representations
Query Guidance
Use explicit boolean logic against the documented true value and include null handling. For example, `WHERE isFederalGovernment = 1` for true records, or `WHERE COALESCE(isFederalGovernment, 0) = 1` when missing values should be treated as false. If the extract uses coded strings, inspect distinct values first and join to any description field if available.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernment AS is_federal_government
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.