Cage Code
CAGE code assigned to the vendor site associated with the IDV record. It is a standardized alphanumeric identifier used to distinguish the specific contractor location or entity represented in FPDS.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
- Contractor profiling and competitor analysis
Common Usage
- Vendor matching and deduplication
- Spend concentration analysis by contractor site
- Joining to external CAGE/entity reference data
Common Mistakes
- Assuming it identifies the parent company rather than the specific site/entity
- Using it as a human-readable label instead of a code
Query Guidance
Use this field for exact-match filtering, grouping, and joins to reference tables. In SQL, normalize blanks/nulls before aggregation and avoid fuzzy matching unless reconciling inconsistent source values; if analyzing vendors, pair it with vendor name and site details to verify entity identity.
SQL Examples
Preview values
SELECT
content__IDV__vendor__vendorSiteDetails__entityIdentifiers__cageCode AS cage_code
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__entityIdentifiers__cageCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__vendor__vendorSiteDetails__entityIdentifiers__cageCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__vendor__vendorSiteDetails__entityIdentifiers__cageCode 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.