Is Council of Governments
Boolean or coded flag indicating whether the vendor’s type of government entity is a council of governments. It is a classification attribute stored within vendor site details for the award record, not a measure of award value or performance.
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 to councils of governments
- Segment vendor population by government-entity type
- Support compliance or exception reporting for intergovernmental awards
Common Mistakes
- Using the field as a proxy for award size or funding impact
- Assuming every falsey value means the same thing without checking null versus explicit no/code values
Query Guidance
Use this field in WHERE clauses to isolate records where the flag indicates council of governments, but verify the exact stored representation in your dataset (for example, 1/0, Y/N, or another code). In SQL, explicitly handle nulls and, when needed, combine it with related entity-type fields to avoid misclassification.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__typeOfGovernmentEntity__isCouncilOfGovernments AS is_council_of_governments
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfGovernmentEntity__isCouncilOfGovernments IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__typeOfGovernmentEntity__isCouncilOfGovernments AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__typeOfGovernmentEntity__isCouncilOfGovernments 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.