Undefinitized Action
Indicates whether the contract action is an undefinitized action. The observed value uses a flag-like convention where "X" means the action is not undefinitized; a non-X or present affirmative value should be checked against the specific FPDS record pattern and related fields.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter awards that are or are not undefinitized actions
- Support compliance and audit reviews of contract awards
- Segment procurement actions by award status or risk profile
Common Mistakes
- Assuming every non-null value means "yes" without checking the encoded convention
- Using this field alone to infer definitization status without corroborating contract data
Query Guidance
Use explicit value tests in SQL, for example WHERE undefinitizedAction = 'X' or WHERE COALESCE(undefinitizedAction, '') <> 'X' depending on the extract convention. If the source includes both a code and a description, filter on the code field and inspect the paired description or actual values before building logic.
SQL Examples
Preview values
SELECT
content__award__contractData__undefinitizedAction AS undefinitized_action
FROM fpds.data
WHERE content__award__contractData__undefinitizedAction IS NOT NULL
LIMIT 25
Flag distribution
SELECT
content__award__contractData__undefinitizedAction AS flag_value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.