Contract Action Type Description
Human-readable description for the coded Contract Action Type value in an Other Transaction IDV record. It labels the underlying action type code so the action can be read directly without decoding the source value.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Display a readable action type in reports
- Validate or decode the paired Contract Action Type code
- Segment Other Transaction IDVs by action type description
Common Mistakes
- Using the description field instead of the code as the primary grouping key
- Assuming the text is standardized across all records without checking observed values
Query Guidance
Select this field alongside the coded Contract Action Type field for reporting. When aggregating, group by the code and use the description as a label; if filtering on text, normalize case and trim whitespace, and consider deduplicating near-identical labels.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__contractData__contractActionType__description AS contract_action_type_description
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__contractData__contractActionType__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__contractData__contractActionType__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__contractData__contractActionType__description 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.