Is Planning Commission
Boolean/coded flag indicating whether the vendor site is identified as a planning commission. It represents a specific government-entity classification associated with the vendor site record, not a description of the award action itself.
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
- Identify awards involving planning commissions
- Segment vendor population by government-entity subtype
- Support compliance or policy reviews of public-sector recipients
Common Mistakes
- Interpreting the flag as an award-level characteristic instead of a vendor-site attribute
- Assuming the value is always binary without checking the observed code set
Query Guidance
Filter on the specific flag value that denotes true/yes in the dataset, and join or inspect related vendor-site classification fields when validating results. In SQL, test for the coded affirmative value rather than relying on text labels, and consider nulls or nonstandard codes as separate cases.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isPlanningCommission AS is_planning_commission
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isPlanningCommission IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__typeOfGovernmentEntity__isPlanningCommission AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.