Region Code
Code identifying the geographic region associated with the contracting office that issued or administers the IDV. It is a coded location attribute, not a narrative description, and should be read as a reference key tied to an FPDS region classification.
FPDS Compare
Use Cases
- Dictionary lookup and field explanation
- SQL filtering and grouping
- Analytical reporting and reusable query building
Common Usage
- Regional rollups of IDV activity by contracting office
- Filtering awards or IDs to a specific FPDS region
- Joining to geography or office reference data for reporting
Common Mistakes
- Assuming the code is the office location itself rather than the office's region classification
- Grouping on the raw code without confirming the valid lookup set or data type
Query Guidance
Use this field in WHERE, GROUP BY, and JOIN clauses when segmenting data by contracting office region. Compare it to the canonical code values from the reference data table, and cast carefully if your database stores the code as text but your source has numeric-looking values.
SQL Examples
Preview values
SELECT
content__IDV__purchaserInformation__contractingOfficeID__regionCode AS region_code
FROM fpds.data
WHERE content__IDV__purchaserInformation__contractingOfficeID__regionCode IS NOT NULL
LIMIT 25
Top values
SELECT
content__IDV__purchaserInformation__contractingOfficeID__regionCode AS value,
count() AS record_count
FROM fpds.data
WHERE content__IDV__purchaserInformation__contractingOfficeID__regionCode 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.