Commercial Item Acquisition Procedures Description
Human-readable text that describes the value in the paired Commercial Item Acquisition Procedures code field. It records the procurement procedure description rather than the underlying code itself, and is typically used to display or interpret the coded competition attribute.
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
- Interpreting the commercial item procedures code in award records
- Grouping awards by procurement procedure description
- Validating code-to-label mappings in FPDS extracts
Common Mistakes
- Using the description field as if it were the authoritative code
- Filtering on free-text description without checking the paired coded field
Query Guidance
Use this field for display, validation, or text-based grouping, but join or filter on the paired code field when possible. In SQL, prefer exact matches or normalized comparisons rather than broad pattern searches, and keep the description aligned with the corresponding code to avoid misclassification.
SQL Examples
Preview values
SELECT
content__award__competition__commercialItemAcquisitionProcedures__description AS commercial_item_acquisition_procedures_description
FROM fpds.data
WHERE content__award__competition__commercialItemAcquisitionProcedures__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__commercialItemAcquisitionProcedures__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__commercialItemAcquisitionProcedures__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.