Is Council of Governments
Boolean or coded flag indicating whether the vendor site is identified as a council of governments. It records the type-of-government-entity classification for the vendor site in the Other Transaction IDV contract detail.
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 populations by government-entity type
- Support compliance or eligibility analyses for intergovernmental recipients
Common Mistakes
- Assuming a 0 value always means false without checking the dataset's code conventions
- Using this field alone to classify the vendor without reviewing adjacent government-entity indicators
Query Guidance
Use this field in WHERE clauses only after confirming its stored values and encoding. If the column is coded, compare against the observed true value; if it is a flag paired with a description field, use both the code and description to avoid misclassification in joins, filters, or counts.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isCouncilOfGovernments AS is_council_of_governments
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isCouncilOfGovernments IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionIDV__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isCouncilOfGovernments AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.