Is Planning Commission
Boolean or coded flag indicating whether the vendor site is identified as a planning commission within the vendor's type-of-government-entity classification. In FPDS, this records the presence of the specified entity type rather than a narrative description.
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 planning commission vendors
- Segment vendor populations by government-entity subtype
- Support compliance or reporting checks on vendor classification
Common Mistakes
- Assuming a value of 0 always means false without checking the dataset's coding convention
- Using this field alone to classify a vendor's full legal status
Query Guidance
Filter using the observed boolean/code values in your FPDS extract, for example WHERE content__IDV__vendor__vendorSiteDetails__typeOfGovernmentEntity__isPlanningCommission = 1 or = 'Y' depending on the source encoding. If the field is nullable, explicitly handle nulls and confirm whether related description fields provide the authoritative label.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfGovernmentEntity__isPlanningCommission AS is_planning_commission
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfGovernmentEntity__isPlanningCommission IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__vendor__vendorSiteDetails__typeOfGovernmentEntity__isPlanningCommission AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__typeOfGovernmentEntity__isPlanningCommission 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.