Program Acronym
Program Acronym is the abbreviated program identifier recorded in the IDV contract data for the award. It represents the program associated with the contract and is typically a short text label rather than a full narrative description.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Grouping IDV awards by program
- Filtering contracts for a specific mission area
- Creating program-level spend or award counts
Common Mistakes
- Assuming the acronym is standardized across agencies
- Using raw values without cleaning case, spacing, or alias variants
Query Guidance
Use exact-match filters for known acronyms and DISTINCT to profile observed values before analysis. For reporting, normalize the field with UPPER(TRIM()) or a mapping table, and aggregate on the normalized value rather than the raw text when consistent program rollups are needed.
SQL Examples
Preview values
SELECT
content__IDV__contractData__programAcronym AS program_acronym
FROM fpds.data
WHERE content__IDV__contractData__programAcronym IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__contractData__programAcronym AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__contractData__programAcronym 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.