Current Completion Date
Stores the current planned completion date for the underlying Other Transaction IDV contract. It represents the date through which the agreement is currently expected to remain in effect, based on the latest available record.
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 time remaining until contract expiration
- Group awards by fiscal year or quarter of expected completion
- Flag instruments nearing end of performance
Common Mistakes
- Confusing the current completion date with the original completion date
- Using the raw string without converting it to a proper date type
Query Guidance
Parse this field as a timestamp/date and use it for filtering, sorting, and date-difference calculations. In SQL, compare it against report dates with explicit casting, and if multiple record versions exist, select the latest available current completion date for each award or transaction.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__relevantContractDates__currentCompletionDate AS current_completion_date
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__relevantContractDates__currentCompletionDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__relevantContractDates__currentCompletionDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__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.