Agency Id
Agency-specific identifier used on the award record to identify the agency value associated with the award element. It is a coded key rather than a free-text description, so the actual meaning depends on the agency’s coding scheme or related reference data.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Filter awards to a specific agency-coded subset
- Join to agency reference or lookup tables
- Group awards by agency-specific reporting key
Common Mistakes
- Interpreting the code as a descriptive agency name
- Assuming the code has the same meaning across all agencies
Query Guidance
Use this field as a join key or WHERE filter for agency-specific award records, e.g. WHERE content__award__agencySpecificAwardElements__agencyID = '8000'. If you need a readable label, join to the relevant lookup or description field rather than selecting this code alone.
SQL Examples
Preview values
SELECT
content__award__agencySpecificAwardElements__agencyID AS agency_id
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__agencyID IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__agencySpecificAwardElements__agencyID AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__agencySpecificAwardElements__agencyID 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.