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.

Family: Award
Category: Contract Data
Data Type: boolean_or_code_flag
Semantic Type: flag
Mapping: flattened_fpds_xml_field
AI Confidence: high

Variable Overview

FPDS Query Variable
content__award__contractData__undefinitizedAction
Title
Undefinitized Action
FPDS Path
award/contractData/undefinitizedAction
Description
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.
Business Meaning
This field helps identify procurement actions awarded before final terms, scope, or price are fully established, which is important for oversight, risk monitoring, and compliance analysis. It is useful for distinguishing standard awards from actions that may require additional review due to incomplete definitization.
Example Value
X
Observed Non-Null Count
111,345,850

FPDS Compare

FPDS Query Variable
content__award__contractData__undefinitizedAction
FPDS XML Path
award/contractData/undefinitizedAction
Mapping Type
flattened_fpds_xml_field
Comparison Summary
FPDS Query flattens the original nested FPDS XML path 'award/contractData/undefinitizedAction' into the SQL-ready variable 'content__award__contractData__undefinitizedAction'.

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.