Solicitation Procedures Description
Human-readable description paired with the coded Solicitation Procedures field in an award record. It states, in plain text, the procurement solicitation procedure used for the award, such as an abbreviated or standardized source label.
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
- Interpret the coded solicitation procedures value
- Group awards by solicitation method or competition path
- Validate whether coded and descriptive fields align
Common Mistakes
- Treating the description as a separate business attribute instead of the label for a code
- Filtering on the text alone without checking the paired coded field
Query Guidance
Select this field alongside the paired solicitation procedures code when reviewing records. In SQL, use it for display, QA, or code-to-label joins, and filter or group on the underlying code when you need stable categorical analysis.
SQL Examples
Preview values
SELECT
content__award__competition__solicitationProcedures__description AS solicitation_procedures_description
FROM fpds.data
WHERE content__award__competition__solicitationProcedures__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__solicitationProcedures__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.