State Name
Human-readable name of the state or territory recorded for the vendor site location on an Other Transaction Award. It is the descriptive label associated with the vendor location state value in the FPDS record.
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
- State-level vendor location reporting
- Geographic distribution analysis of awardees
- Vendor site normalization and mapping
Common Mistakes
- Assuming it is always a USPS abbreviation rather than a full name
- Using it as a unique identifier for joins
Query Guidance
Use this field in SELECT and GROUP BY clauses for location summaries, and filter on normalized state values when possible. If the source contains both code and name fields, join or validate against the coded field to avoid duplicate categories caused by spelling or formatting differences.
SQL Examples
Preview values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__state__name AS state_name
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__state__name IS NOT NULL
LIMIT 25
Top values
SELECT
content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__state__name AS value,
count() AS record_count
FROM fpds.data
WHERE content__OtherTransactionAward__contractDetail__vendor__vendorSiteDetails__vendorLocation__state__name 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.