Contract Action Type
A coded indicator that identifies the type of action recorded for an Other Transaction award transaction. It classifies the transaction event itself, such as an initial award, modification, or other contract-action category used in FPDS reporting.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Separate new awards from modifications
- Count transaction volume by action type
- Filter lifecycle events in award-level analysis
Common Mistakes
- Using action records as if each row were a unique award
- Grouping without decoding the action code first
Query Guidance
Use the field as a filter or GROUP BY dimension after confirming the code set in your data. In SQL, aggregate by this column only when you intend to analyze transaction types; otherwise join or deduplicate on the award identifier to avoid double counting repeated actions.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__contractData__contractActionType AS contract_action_type
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__contractData__contractActionType IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__contractData__contractActionType AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__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.