Current Completion Date
The current scheduled date on which the contract is expected to be completed. It represents the latest completion date recorded on the award’s relevant contract dates section and may change over the life of the contract.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Timeline, cohort, and period analysis
Common Usage
- filter awards ending in a target period
- calculate planned contract length or remaining time
- analyze schedule extensions and delivery slippage
Common Mistakes
- confusing current completion date with the original planned completion date
- comparing the raw string without converting it to a date type
Query Guidance
Cast the value to DATE or TIMESTAMP in SQL, then use it for range filters, grouping by month or fiscal year, and duration calculations. When joining to modification or baseline analysis, pair it with the original completion date to measure extensions.
SQL Examples
Preview values
SELECT
content__award__relevantContractDates__currentCompletionDate AS current_completion_date
FROM fpds.data
WHERE content__award__relevantContractDates__currentCompletionDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__relevantContractDates__currentCompletionDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__relevantContractDates__currentCompletionDate 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.