Physical Completion Date
The date on which the award was physically completed, meaning the required work, delivery, or services under the award were finished. It records completion of performance rather than award obligation or period of performance start.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- identify awards that have reached performance completion
- calculate award performance duration from obligation or base award date
- analyze completion timing by agency, vendor, or contract type
Common Mistakes
- using it as the same thing as closeout date
- treating the string value as a number or unparsed datetime
Query Guidance
In SQL, cast or parse the string to a date/datetime before filtering or aggregating, for example with DATE() or TO_DATE() depending on the database. Use it in WHERE clauses to isolate completed awards, and in date-difference functions to compute performance elapsed time; exclude nulls or blank strings explicitly.
SQL Examples
Preview values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__physicalCompletionDate AS physical_completion_date
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__physicalCompletionDate IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__physicalCompletionDate AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__physicalCompletionDate 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.