Solicitation Procedures
Flag or coded value indicating the solicitation procedure associated with an IDV record. In FPDS, this field captures the solicitation procedure used and may appear as an abbreviated code such as "NP" rather than a full text description.
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
- Filter IDV records by solicitation procedure code
- Group awards by solicitation pathway for competition analysis
- Validate compliance with acquisition reporting requirements
Common Mistakes
- Interpreting the value as a plain-English description without checking the code set
- Using it as a binary indicator when it may contain multiple coded values
Query Guidance
Use equality or IN predicates against the stored code values, and join to a lookup or decode table if one exists to translate abbreviations into readable labels. When aggregating, group by the code field rather than attempting text matching, and avoid filtering on partial strings unless you have confirmed the coding scheme.
SQL Examples
Preview values
SELECT
content__IDV__competition__solicitationProcedures AS solicitation_procedures
FROM fpds.data
WHERE content__IDV__competition__solicitationProcedures IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__competition__solicitationProcedures AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__competition__solicitationProcedures IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.