Is Physically Complete
Boolean or coded flag indicating whether the IDV has been physically completed. In NASA-specific FPDS data, 0 represents false and 1 represents true, so the field captures completion status rather than a narrative description.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- NASA-specific IDV record interpretation
Common Usage
- Filter IDVs that are physically complete
- Segment active versus completed instruments
- Support closeout and lifecycle analyses
Common Mistakes
- Assuming 1 means financially complete rather than physically complete
- Ignoring null, missing, or nonstandard coded values
Query Guidance
Use explicit comparisons against the code values, such as `WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__isPhysicallyComplete = 1` for completed records or `= 0` for not completed records. When building aggregates, coalesce or separately count nulls so incomplete data is not mistaken for false.
SQL Examples
Preview values
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__isPhysicallyComplete AS is_physically_complete
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__isPhysicallyComplete IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__isPhysicallyComplete AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__agencySpecificIDVElements__NASASpecificIDVElements__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.