Contracting Officer Business Size Determination Description
Human-readable description for the contracting officer’s business size determination in an IDV record. This is the text label associated with the coded business size determination field, such as "SMALL BUSINESS".
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
- Interpreting business size determinations on IDV records
- Grouping awards by small business or other size categories
- Validating coded FPDS business size values against readable labels
Common Mistakes
- Using the description field as if it were the coded source value
- Assuming all text values are standardized without checking for spelling or formatting variation
Query Guidance
Use this field as a display or validation field in SQL, typically alongside the paired business size code. Normalize text if grouping on descriptions, and prefer the coded field for filtering while using this description for QA, reporting labels, or exception review.
SQL Examples
Preview values
SELECT
content__IDV__vendor__contractingOfficerBusinessSizeDetermination__description AS contracting_officer_business_size_determination_description
FROM fpds.data
WHERE content__IDV__vendor__contractingOfficerBusinessSizeDetermination__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__contractingOfficerBusinessSizeDetermination__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__contractingOfficerBusinessSizeDetermination__description 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.