Contracting Officer Business Size Determination
Human-readable business-size determination recorded by the contracting officer for the vendor on the award. It reflects the contracting officer’s size decision or classification for the action, often representing a coded or abbreviated value rather than a full narrative.
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
- Small business and socioeconomic performance analysis
- Set-aside and award classification review
- Filtering awards by contracting officer size determination
Common Mistakes
- Confusing the contracting officer’s determination with the vendor’s self-reported or official SBA size status
- Using the raw code without checking the applicable code set or observed value meanings
Query Guidance
Use this field as a categorical filter or grouping attribute in SQL, but first validate the code meanings in the dataset or reference mapping. When aggregating, group by the normalized code or decoded label rather than the raw text if the source contains multiple representations of the same determination.
SQL Examples
Preview values
SELECT
content__award__vendor__contractingOfficerBusinessSizeDetermination AS contracting_officer_business_size_determination
FROM fpds.data
WHERE content__award__vendor__contractingOfficerBusinessSizeDetermination IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__contractingOfficerBusinessSizeDetermination AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.