Solicitation Procedures Description
Human-readable text that describes the solicitation procedures used for the action. It is the descriptive label paired with the coded FPDS solicitation procedures value for the Other Transaction IDV competition record.
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 coded solicitation procedures value
- Grouping awards by competition method
- Validating coded values against human-readable labels
Common Mistakes
- Treating the description as a separate business category from the code
- Filtering on the description text when the code is the more stable join or grouping key
Query Guidance
Use this field for display, validation, and text-based review, but prefer the paired solicitation procedures code for aggregation and joins. In SQL, select both the code and description together, and use the description to confirm that the code maps to the expected solicitation method.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__competition__solicitationProcedures__description AS solicitation_procedures_description
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__competition__solicitationProcedures__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__competition__solicitationProcedures__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.