Agency Identifier
Code identifying the agency associated with the Treasury Account funding the award. It is a coded attribute, not a narrative description; the value represents the agency responsible for the account rather than the account itself.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Group awards by funding agency
- Filter awards tied to a specific Treasury Account agency code
- Support reconciliation between award data and Treasury-funded account records
Common Mistakes
- Confusing the code with the agency name or contracting office
- Using the field without validating the paired description or reference data
Query Guidance
Use exact-code filters or joins to a lookup table, e.g. WHERE agencyIdentifier = '70'. For analysis, aggregate by the code after normalizing any leading zeros or formatting differences, and confirm whether the record contains multiple Treasury Accounts before counting awards.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__contractData__listOfTreasuryAccounts__treasuryAccount__treasuryAccountSymbol__agencyIdentifier AS agency_identifier
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__contractData__listOfTreasuryAccounts__treasuryAccount__treasuryAccountSymbol__agencyIdentifier IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__contractData__listOfTreasuryAccounts__treasuryAccount__treasuryAccountSymbol__agencyIdentifier AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__contractData__listOfTreasuryAccounts__treasuryAccount__treasuryAccountSymbol__agencyIdentifier 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.