A76 Action Description
Human-readable description for the FPDS coded field "A76 Action" on an IDV competition record. It conveys the textual label or explanation associated with the underlying action code, rather than the code itself.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Competition and sole-source analysis
Common Usage
- Decode or label A76 action values in reports
- Validate competition-related IDV records
- Group records by human-readable action description
Common Mistakes
- Using the description as a substitute for the underlying code in joins or filters
- Assuming a short value like "NO" is the full business meaning without checking the paired code
Query Guidance
Use this field for display, validation, and text-based grouping. In SQL, filter or join on the underlying A76 Action code when available; use this description field to label results or to audit whether coded values map to the expected human-readable text.
SQL Examples
Preview values
SELECT
content__IDV__competition__A76Action__description AS a76_action_description
FROM fpds.data
WHERE content__IDV__competition__A76Action__description IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__competition__A76Action__description AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__competition__A76Action__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.