Ultimate Completion Date
The latest date by which performance or obligations under the Other Transaction IDV are expected to be fully completed, as recorded in the contract's relevant dates section. It represents the terminal end point for the instrument's completion timeline in FPDS.
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 completing in a given fiscal year or quarter
- calculate award duration or time remaining
- identify long-running or overdue instruments
Common Mistakes
- confusing ultimate completion date with initial award date or base period start
- assuming the date reflects actual completion rather than the planned/latest scheduled completion
Query Guidance
Cast or parse the string to a date/datetime type, then use standard date comparisons, date truncation, and interval calculations. In SQL, filter with BETWEEN, >=, or < on the parsed field, and group by fiscal period after converting to the appropriate reporting calendar.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__relevantContractDates__ultimateCompletionDate AS ultimate_completion_date
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__relevantContractDates__ultimateCompletionDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__relevantContractDates__ultimateCompletionDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__relevantContractDates__ultimateCompletionDate 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.