Is Federal Government Agency
Boolean or coded flag indicating whether the vendor site is identified as a federal government agency in the Other Transaction Award vendor business types structure. The value records the presence of that classification for the vendor site, rather than a descriptive name. Example value 0 indicates the condition is not met.
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 where the vendor is a federal government agency
- Segment vendor base by public-sector versus non-public-sector counterparties
- Support compliance and interagency award analysis
Common Mistakes
- Assuming the flag describes the prime award recipient rather than the vendor site record
- Treating coded values as self-evident without checking the dataset's code-to-meaning mapping
Query Guidance
In SQL, filter on the flag value only after confirming the stored encoding, for example WHERE isFederalGovernmentAgency = 1 for true/yes or WHERE isFederalGovernmentAgency = 'Y' if the file uses character codes. Use IS NULL checks to separate missing from negative responses, and join to any paired description field if available to validate interpretation.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernmentAgency AS is_federal_government_agency
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernmentAgency IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernmentAgency AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.