Solicitation Procedures Description
Human-readable text that describes the solicitation procedures used for the award. It is the descriptive companion to the coded 'Solicitation Procedures' field and is intended to spell out the procedure in plain language.
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
- Decode the solicitation procedure recorded for an award
- Group awards by solicitation approach in descriptive reporting
- Validate coded competition data against the text label
Common Mistakes
- Using the description as if it were the authoritative code
- Assuming text values are standardized across agencies or reporting systems
Query Guidance
Select this field alongside the paired solicitation procedure code when available, and use it for human-readable reporting, filtering, or validation. In SQL, avoid joining or grouping on this text alone if a normalized code field exists; instead, group on the code and display the description as the label.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__competition__solicitationProcedures__description AS solicitation_procedures_description
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__competition__solicitationProcedures__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__competition__solicitationProcedures__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.