Agency Id
Identifier for the agency that issued the referenced IDV associated with this Other Transaction Award. It is a coded value, not a descriptive agency name, and serves as the agency key on the referenced IDV record.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Join referenced IDV records to agency reference data
- Group awards by issuing agency for portfolio summaries
- Filter or benchmark activity by originating agency
Common Mistakes
- Assuming the value is the name of the agency instead of its identifier
- Using it without joining to a reference table when a human-readable agency label is needed
Query Guidance
Use this field as a join key or grouping code in SQL, for example in WHERE, GROUP BY, or JOIN clauses against agency reference tables. Prefer selecting both the code and its descriptive label when building analyst-facing outputs, and avoid hard-coding meanings unless the code set has been validated.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__OtherTransactionAwardID__referencedIDVID__agencyID AS agency_id
FROM fpds.data
WHERE content__OtherTransactionAward__OtherTransactionAwardID__referencedIDVID__agencyID IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__OtherTransactionAwardID__referencedIDVID__agencyID AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__OtherTransactionAwardID__referencedIDVID__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.