Is Federal Government Agency
Boolean or coded flag indicating whether the vendor site is associated with a federal government agency. A value such as 1/true typically means the site is identified as a federal government agency; 0/false means it is not.
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 agencies from commercial vendor counts
- Segment awards by government versus non-government vendors
- Support compliance or interagency transaction analysis
Common Mistakes
- Assuming the flag identifies the parent vendor rather than the specific vendor site
- Treating null, blank, and false as equivalent without checking data quality rules
Query Guidance
Filter on the stored truthy value for agency records and explicitly handle nulls. Example pattern: WHERE isFederalGovernmentAgency IN ('1', 1, 'Y', TRUE) or compare to the known code set from the source extract; if you need non-agency records, use the complementary false set and exclude nulls separately when precision matters.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernmentAgency AS is_federal_government_agency
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernmentAgency IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernmentAgency AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernmentAgency 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.