Solicitation Id
Unique solicitation identifier associated with the award record. It represents the procurement notice or request-for-offers reference that preceded the contract action, typically as issued by the contracting activity.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Join award records to solicitation-level data
- Track award lineage back to the original procurement action
- Identify multiple awards issued under the same solicitation
Common Mistakes
- Treating the value as a free-text description instead of a key
- Assuming identical-looking strings are standardized across agencies
Query Guidance
Use exact string equality for joins and filtering after trimming whitespace and normalizing case if needed. Avoid numeric casting; preserve leading zeros and embedded letters, and de-duplicate only after verifying whether the same solicitation ID is reused across multiple line items or modifications.
SQL Examples
Preview values
SELECT
content__award__contractData__solicitationID AS solicitation_id
FROM fpds.data
WHERE content__award__contractData__solicitationID IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__contractData__solicitationID AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__solicitationID 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.