A76 Action
Coded competition indicator recorded on the award to show the A-76 action associated with the procurement record. It represents a short code rather than a full narrative description, so the specific meaning depends on the FPDS code set in use.
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
- Filter award records tied to A-76-related competition reporting
- Group awards by A-76 action code to analyze sourcing patterns
- Combine with competition fields to study noncompetitive versus competitive outcomes
Common Mistakes
- Assuming the code is a plain-language description
- Using the field as a standalone proxy for competition status
Query Guidance
Select and group by the field as a categorical code, and compare it with related competition fields in the same award record. In SQL, filter for specific observed code values only after verifying their meaning in the extract or reference table; avoid LIKE-based interpretation unless the dataset stores descriptive text.
SQL Examples
Preview values
SELECT
content__award__competition__A76Action AS a76_action
FROM fpds.data
WHERE content__award__competition__A76Action IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__competition__A76Action AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__competition__A76Action 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.