Cancellation Date

Date on which NASA canceled the award. It records the cancellation event for the specific award record and is stored as a string timestamp in the FPDS NASA-specific award elements.

Family: Award
Category: General
Data Type: string
Semantic Type: attribute
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__award__agencySpecificAwardElements__NASASpecificAwardElements__cancellationDate
Title
Cancellation Date
FPDS Path
award/agencySpecificAwardElements/NASASpecificAwardElements/cancellationDate
Description
Date on which NASA canceled the award. It records the cancellation event for the specific award record and is stored as a string timestamp in the FPDS NASA-specific award elements.
Business Meaning
This field helps analysts identify awards that were later voided or terminated by NASA, which is important for understanding obligation lifecycles, award attrition, and whether reported awards remained active. It supports cleanup of award counts and interpretation of spending or action timing in procurement reporting.
Example Value
2024-07-10 00:00:00
Observed Non-Null Count
3,032

FPDS Compare

FPDS Query Variable
content__award__agencySpecificAwardElements__NASASpecificAwardElements__cancellationDate
FPDS XML Path
award/agencySpecificAwardElements/NASASpecificAwardElements/cancellationDate
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'award/agencySpecificAwardElements/NASASpecificAwardElements/cancellationDate' into the SQL-ready variable 'content__award__agencySpecificAwardElements__NASASpecificAwardElements__cancellationDate'.

Use Cases

  • Dictionary lookup and field explanation
  • SQL filtering and grouping
  • Analytical reporting and reusable query building

Common Usage

  • identify canceled NASA awards
  • measure timing between award and cancellation
  • exclude canceled awards from active award counts

Common Mistakes

  • using it as the award execution date
  • assuming null means the award is active without checking other status fields

Query Guidance

Parse the string to a date or timestamp, then filter for non-null values to find canceled awards. Use it in date-range predicates, grouping, or lifecycle analysis, but do not join or compare it as a raw string unless the source format is guaranteed to be ISO-ordered.

SQL Examples

Preview values

SELECT
    content__award__agencySpecificAwardElements__NASASpecificAwardElements__cancellationDate AS cancellation_date
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__cancellationDate IS NOT NULL
LIMIT 25

Top values

SELECT
    content__award__agencySpecificAwardElements__NASASpecificAwardElements__cancellationDate AS value,
    count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__NASASpecificAwardElements__cancellationDate 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.