Current Completion Date
The date the Other Transaction Award is currently expected to be completed. It reflects the latest completion date recorded for the contract detail and may change over the life of the award.
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
- Calculate expected contract end dates and remaining performance time
- Group awards by fiscal year or quarter of completion
- Identify schedule extensions or awards with unusually long current completion horizons
Common Mistakes
- Treating the current completion date as the actual completion date
- Comparing the raw string without converting it to a date data type
Query Guidance
Cast or parse the field to a date/time type before filtering, sorting, or date arithmetic. Use it in WHERE clauses for completion windows, in GROUP BY for fiscal-period analysis, and with care in historical analyses because later records may overwrite earlier planned completion dates.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__relevantContractDates__currentCompletionDate AS current_completion_date
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__relevantContractDates__currentCompletionDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__relevantContractDates__currentCompletionDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__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.