Initiative
A treasury-account initiative code associated with the Other Transaction IDV record. It identifies the initiative or program classification tied to the funding account and is typically a coded value rather than free text.
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 initiative or funding program
- Group obligations by initiative code for reporting
- Join to reference tables or code descriptions when available
Common Mistakes
- Assuming the value is a full descriptive phrase instead of a code
- Aggregating without checking for nulls, legacy codes, or multiple account records per award
Query Guidance
Use this field in WHERE, GROUP BY, and JOIN logic after confirming the code set and null behavior. In SQL, compare on the exact stored code value and, when available, join to a lookup or description table to produce human-readable output; if multiple treasury accounts can exist per record, deduplicate or aggregate carefully.
SQL Examples
Preview values
SELECT
content__OtherTransactionIDV__contractDetail__contractData__listOfTreasuryAccounts__treasuryAccount__initiative AS initiative
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__contractData__listOfTreasuryAccounts__treasuryAccount__initiative IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionIDV__contractDetail__contractData__listOfTreasuryAccounts__treasuryAccount__initiative AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionIDV__contractDetail__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.