Contract Action Type
Coded value that identifies the type of contract action recorded for the IDV contract data segment. It is the transactional classification for the record rather than a narrative description; for example, the observed value "C" indicates one action type code among the allowed set.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter IDV records by action type for lifecycle analysis
- Group awards and modifications into action categories
- Join to code lookups or paired description fields for reporting
Common Mistakes
- Assuming the value is a descriptive phrase instead of a code
- Counting actions as unique awards without de-duplicating by IDV identifier
Query Guidance
Use equality or IN filters on the code values, and join to lookup tables or description fields when you need readable output. In aggregation, separate action-level counts from award-level counts to avoid overstating volume.
SQL Examples
Preview values
SELECT
content__IDV__contractData__contractActionType AS contract_action_type
FROM fpds.data
WHERE content__IDV__contractData__contractActionType IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractData__contractActionType AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__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.