Is Community Development Corporation
Boolean or coded flag indicating whether the vendor is identified in FPDS as a community development corporation at the vendor-site level. It captures a specific organizational classification associated with the vendor's line of business record rather than the award action itself. Example values such as 0 typically indicate false, not selected, or no.
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 involving community development corporations
- Segment vendor populations for socioeconomic analysis
- Count or trend awards by vendor classification
Common Mistakes
- Assuming 0 always means a definitive no rather than a coded false/null representation
- Using the flag without considering that it applies at the vendor-site level
Query Guidance
In SQL, use explicit value checks after confirming the coding scheme, for example WHERE isCommunityDevelopmentCorporation IN (1, 'Y', 'T') for affirmative records. When building summaries, group by the normalized flag and preserve nulls separately so missing data is not conflated with false values.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isCommunityDevelopmentCorporation AS is_community_development_corporation
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isCommunityDevelopmentCorporation IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isCommunityDevelopmentCorporation AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLineOfBusiness__isCommunityDevelopmentCorporation 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.