Solicitation Procedures Description
Human-readable description for the paired coded solicitation procedures field in an IDV record. It states the solicitation method or procedure used, such as a negotiated proposal or quote process, rather than the underlying code itself.
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 solicitation procedure codes in FPDS extracts
- Grouping awards by procurement method for reporting
- Validating data quality between code and description fields
Common Mistakes
- Using the description as if it were the authoritative code
- Assuming text values are fully standardized across all records
Query Guidance
Use this field for display, labeling, and validation, while joining or filtering on the paired solicitation procedure code when exact classification is required. In SQL, consider normalizing text values with TRIM/UPPER for reporting, but do not rely on the description alone for analytical logic if the coded field is available.
SQL Examples
Preview values
SELECT
content__IDV__competition__solicitationProcedures__description AS solicitation_procedures_description
FROM fpds.data
WHERE content__IDV__competition__solicitationProcedures__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__competition__solicitationProcedures__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__competition__solicitationProcedures__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.