Solicitation Issue Date
The date on which NASA issued the solicitation for the award action. It records when the solicitation was released to potential offerors, not when the award was made or when the solicitation closed.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- calculate time from solicitation issuance to award
- group awards by solicitation issuance period
- analyze procurement cycle duration and seasonality
Common Mistakes
- using it as the award date
- assuming it exists for all agencies or all awards
Query Guidance
Cast or truncate to DATE when doing monthly or annual summaries, e.g. DATE(solicitationIssueDate), and use range predicates for period filters. Join or compare it with award date, notice date, and response/close dates to compute elapsed time; do not sort procurement lifecycle events solely on this field without confirming the relevant event sequence.
SQL Examples
Preview values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__solicitationIssueDate AS solicitation_issue_date
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__solicitationIssueDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__solicitationIssueDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__solicitationIssueDate 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.