Small Business Competitiveness Demonstration Program
Boolean or coded flag indicating whether the IDV is associated with the Small Business Competitiveness Demonstration Program. It identifies records that fall under this specific procurement program condition in the FPDS competition section.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Competition and sole-source analysis
Common Usage
- Filter IDVs covered by the Small Business Competitiveness Demonstration Program
- Segment competition analysis for small business program participation
- Support compliance and oversight reporting on special procurement authorities
Common Mistakes
- Assuming 0 always means false without confirming the domain-specific encoding
- Using the field alone to infer small business status of the award without checking related competition and set-aside fields
Query Guidance
Use this field as a filter on the IDV competition record, but first confirm the stored representation in your extract. In SQL, test explicitly for the approved indicator value(s) rather than relying on truthy evaluation, and combine it with award type, competition, and set-aside fields when building program-level analyses.
SQL Examples
Preview values
SELECT
content__IDV__competition__smallBusinessCompetitivenessDemonstrationProgram AS small_business_competitiveness_demonstration_program
FROM fpds.data
WHERE content__IDV__competition__smallBusinessCompetitivenessDemonstrationProgram IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__competition__smallBusinessCompetitivenessDemonstrationProgram AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__competition__smallBusinessCompetitivenessDemonstrationProgram 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.