Fed Biz Opps
Boolean or coded flag indicating whether the IDV record was posted in Federal Business Opportunities (FedBizOpps). In FPDS, this is a condition indicator stored at IDV/competition/fedBizOpps, and the observed value may appear as an abbreviated code such as "X" rather than a plain-language yes/no.
FPDS Compare
Paired Field
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 that were posted through FedBizOpps
- Compare competition patterns for posted versus non-posted actions
- Support compliance or transparency review of solicitation posting practices
Common Mistakes
- Assuming the field is always a simple boolean instead of a coded flag
- Treating null, blank, and non-"X" values as equivalent without validating the source code set
Query Guidance
Use this field as a filter on the specific coded value present in your extract, commonly `= 'X'` for posted records. In SQL, confirm whether the source stores yes/no as `X`, `Y/N`, or another code, and use `IS NOT NULL` only if you intend to capture any populated indicator rather than the affirmative condition specifically.
SQL Examples
Preview values
SELECT
content__IDV__competition__fedBizOpps AS fed_biz_opps
FROM fpds.data
WHERE content__IDV__competition__fedBizOpps IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__competition__fedBizOpps AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__competition__fedBizOpps 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.