Is Federal Government
Boolean or coded flag indicating whether the vendor site is identified as a federal government entity in the Other Transaction IDV record. A value such as 0 typically means no, while the paired code or true/false value indicates the site is federal government.
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 Other Transaction IDVs to government-entity vendor sites
- Segment awards by vendor entity type for compliance review
- Validate vendor classification against other business type indicators
Common Mistakes
- Assuming the field is always a strict boolean when the source may use coded values
- Using it alone to classify the entire vendor without checking related vendor business type fields
Query Guidance
In SQL, filter on the affirmative value only after confirming the dataset encoding, for example WHERE isFederalGovernment IN ('Y', 1, 'true') or the equivalent code in your extract. When building analytics, coalesce and normalize the field to a common boolean representation, and join or compare it with related vendor type fields to avoid misclassification.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernment AS is_federal_government
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernment IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__vendorBusinessTypes__federalGovernment__isFederalGovernment AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.