Initiative
A code identifying the government-wide or agency initiative associated with the specific Treasury account funding the award. It is a coded attribute, not a free-text narrative, and may reflect initiatives such as ARRA or other program-specific funding designations.
FPDS Compare
Paired Field
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- filter awards tied to a specific funding initiative
- group obligations by initiative for trend analysis
- support compliance or oversight reporting for special funding streams
Common Mistakes
- treating the code as a descriptive label without checking its meaning
- assuming null or blank values mean no initiative rather than missing or unreported data
Query Guidance
Use exact-match or IN predicates on the coded value, and normalize case/whitespace if source quality is inconsistent. If a description field exists, join or select it alongside the code for interpretation; do not aggregate solely on the text label without validating the underlying code values.
SQL Examples
Preview values
SELECT
content__award__contractData__listOfTreasuryAccounts__treasuryAccount__initiative AS initiative
FROM fpds.data
WHERE content__award__contractData__listOfTreasuryAccounts__treasuryAccount__initiative IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__contractData__listOfTreasuryAccounts__treasuryAccount__initiative AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__contractData__listOfTreasuryAccounts__treasuryAccount__initiative 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.