Contracting Officer Business Size Determination
A coded indicator of the contracting officer’s small-business size determination for the IDV vendor. It represents the business-size status recorded at the time of the indefinite delivery vehicle and is not a narrative explanation; the example value "S" indicates a coded value rather than a full label.
FPDS Compare
Paired Field
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 IDVs by small-business size determination
- Group awards by size-status code for portfolio reporting
- Cross-tabulate size determination with NAICS, agency, or vehicle type
Common Mistakes
- Assuming the field contains a human-readable label instead of a code
- Using it as a current vendor certification or SAM status indicator
Query Guidance
Select this field as a categorical attribute and group or filter on the raw code values; do not parse it as free text. When possible, join to a reference lookup or decode table to map codes such as S to their meanings, and apply date/record-level filters so the determination is analyzed in the correct contract context.
SQL Examples
Preview values
SELECT
content__IDV__vendor__contractingOfficerBusinessSizeDetermination AS contracting_officer_business_size_determination
FROM fpds.data
WHERE content__IDV__vendor__contractingOfficerBusinessSizeDetermination IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__contractingOfficerBusinessSizeDetermination AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__contractingOfficerBusinessSizeDetermination IS NOT NULL
GROUP BY value
ORDER BY record_count DESC
LIMIT 25
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.