State
State in the vendor location record identifies the U.S. state or equivalent jurisdiction for the contractor site associated with the award. It is a location attribute, typically represented as a two-character abbreviation such as "NJ".
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
- grouping awards by vendor location state
- filtering contractor populations by geography
- supporting state-level spending and market concentration analysis
Common Mistakes
- confusing vendor site state with place of performance state
- assuming the value is always a full state name instead of a code
Query Guidance
Use the field as a categorical text filter or grouping column, for example WHERE state = 'NJ' or GROUP BY state. For consistent reporting, normalize case and validate against the observed code set before joining to geography reference tables.
SQL Examples
Preview values
SELECT
content__award__vendor__vendorSiteDetails__vendorLocation__state AS state
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLocation__state IS NOT NULL
LIMIT 25
Top values
SELECT
content__award__vendor__vendorSiteDetails__vendorLocation__state AS value,
count() AS record_count
FROM fpds.data
WHERE content__award__vendor__vendorSiteDetails__vendorLocation__state 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.