Is Federal Government Agency
Boolean or coded flag indicating whether the vendor site is identified as a federal government agency. It captures the business type classification at the vendor-site level within 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 federal agencies from commercial vendor counts
- Segment vendor populations by ownership or entity type
- Support compliance and reporting checks on entity classification
Common Mistakes
- Assuming the field indicates award recipient status rather than vendor-site business type
- Filtering without checking whether the stored values are true/false, 1/0, or another coded representation
Query Guidance
Use this field as a filter or grouping attribute in WHERE and CASE logic, for example to isolate records where the value indicates a federal agency. If the dataset stores coded values, inspect the raw distinct values first and map them explicitly before analysis.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernmentAgency AS is_federal_government_agency
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernmentAgency IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernmentAgency AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.