Undefinitized Action
Boolean or coded indicator showing whether the IDV contract action is an undefinitized action. It identifies records where the agreement was awarded or modified before all terms, price, or other key details were fully finalized. In some FPDS extracts, the value may appear as a flag such as "X" rather than a plain true/false value.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter IDVs that were executed as undefinitized actions
- Segment awards for compliance or exception review
- Count or trend undefinitized actions over time
Common Mistakes
- Assuming the field is always a strict true/false boolean across all extracts
- Treating blank values as meaningful without verifying the source encoding
Query Guidance
Use this field as a boolean filter after normalizing its stored representation. In SQL, compare against the observed affirmative code values in your dataset, such as WHERE undefinitizedAction = 'X' or WHERE COALESCE(undefinitizedAction,'') <> '' if the source uses a nonblank flag. Validate against companion fields or sample records before building production logic.
SQL Examples
Preview values
SELECT
content__IDV__contractData__undefinitizedAction AS undefinitized_action
FROM fpds.data
WHERE content__IDV__contractData__undefinitizedAction IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__IDV__contractData__undefinitizedAction AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__undefinitizedAction 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.