Is Physically Complete
Boolean or coded indicator showing whether the NASA award record is physically complete. A value of 1 means the award has reached physical completion; 0 means it has not, consistent with the NASA-specific award element in the FPDS XML path.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filtering NASA awards to identify physically complete records
- Measuring completion or closeout rates across award portfolios
- Segmenting active versus completed awards for compliance review
Common Mistakes
- Assuming 0 always means a confirmed 'no' instead of possibly missing or not reported in some extracts
- Using the field as a proxy for financial closeout or administrative completion
Query Guidance
Filter explicitly on the encoded values, typically `= 1` for complete and `= 0` for not complete, and test for nulls separately. If the extract includes a companion description field or mixed representations, validate the domain before aggregating or joining.
SQL Examples
Preview values
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__isPhysicallyComplete AS is_physically_complete
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__isPhysicallyComplete IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__agencySpecificAwardElements__NASASpecificAwardElements__isPhysicallyComplete AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__isPhysicallyComplete IS NOT NULL
GROUP BY flag_value
ORDER BY record_count DESC
Each dictionary item includes SQL-ready examples generated alongside the variable metadata, allowing immediate use in FPDS Query for filtering, aggregation, and analysis.