Agency Identifier
A coded identifier for the federal agency associated with the treasury account linked to the award. It identifies which agency owns or is tied to the account rather than describing the account itself.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- grouping awards by funding agency
- joining to agency reference or lookup tables
- filtering treasury-account-linked award records
Common Mistakes
- assuming the code is the same as the awarding office or contracting agency
- using the value alone without validating the related descriptive field or code set
Query Guidance
Use this field as a join key or filter on the coded agency identifier, and cast consistently if your warehouse stores it as text. For analysis, pair it with the corresponding agency name or description field; if multiple treasury-account records exist per award, deduplicate or aggregate intentionally before summarizing by agency.
SQL Examples
Preview values
SELECT
content__award__contractData__listOfTreasuryAccounts__treasuryAccount__treasuryAccountSymbol__agencyIdentifier AS agency_identifier
FROM fpds.data
WHERE content__award__contractData__listOfTreasuryAccounts__treasuryAccount__treasuryAccountSymbol__agencyIdentifier IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__contractData__listOfTreasuryAccounts__treasuryAccount__treasuryAccountSymbol__agencyIdentifier AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__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.