Contract Action Type
Code indicating the type of action represented by the Other Transaction IDV contract record. It identifies whether the record is an initial award, modification, or other action category recorded in FPDS for the contract data segment.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Classify records by award versus modification action
- Filter lifecycle events for Other Transaction IDV analysis
- Group obligations or counts by action type
Common Mistakes
- Assuming the value is a free-text label rather than a code
- Counting all rows as new awards without excluding modification or other action types
Query Guidance
Use this field in WHERE clauses or GROUP BYs to isolate specific action categories, and map codes to their meanings before building metrics. If the dataset includes a companion description field, prefer joining or decoding on the code value rather than filtering on the raw displayed text.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__contractData__contractActionType AS contract_action_type
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__contractData__contractActionType IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__contractData__contractActionType AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__contractData__contractActionType 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.