Federal Contractor

SOUTHWEST VALLEY CONSTRUCTORS CO Federal Contract Obligations (Last 10 Years)

Federal procurement summary for SOUTHWEST VALLEY CONSTRUCTORS CO (CAGE 7V2D3, UEI W31DQKBPJCD3) covering the last 10 years of FPDS award activity.

SOUTHWEST VALLEY CONSTRUCTORS CO recorded 162 award actions with total obligated dollars of 2.33 billion and an average action value of 14.41 million. All obligations in this view were awarded by the Department of the Army and classified under NAICS 237310, Highway, Street, and Bridge Construction.

Generated at 03/21/2026

Analysis period: Last 10 years

Annual obligation totals include negative values as reported in FPDS and should be read as transaction-level adjustments within the analysis window.

CAGE Code
7V2D3
UEI
W31DQKBPJCD3
Total Obligated
2.33 billion
2,334,069,969.56
Award Actions
162
Average Action Value
14,407,839.31

About SOUTHWEST VALLEY CONSTRUCTORS CO federal contract activity

SOUTHWEST VALLEY CONSTRUCTORS CO (CAGE 7V2D3, UEI W31DQKBPJCD3) recorded 162 FPDS awards over the last 10 years with total obligated value of 2.33 billion and an average award value of 14.41 million. The profile is highly concentrated in a single civilian:military customer base and contract type mix, indicating sustained participation on large infrastructure work rather than broad agency diversification.

Agency mix and customer concentration

All observed obligations in the analysis window were with the DEPT OF THE ARMY, which accounted for 2.33 billion across 162 awards. That concentration suggests the vendor’s federal business is dependent on Army demand and Army-managed construction and civil works pipelines.

Industry profile based on NAICS activity

All recorded obligations were classified under NAICS 237310, Highway, Street, and Bridge Construction, with 162 awards totaling 2.33 billion. The NAICS profile indicates a narrow specialization in heavy civil construction, with no evidence in the provided data of material activity outside this code.

Annual contract trend over the analysis window

Annual obligations were volatile and included multiple negative net obligation years, with 2025 at -262.91 million, 2024 at -33.56 million, 2022 at -119.92 million, and 2021 at -30.64 million, offset partly by a positive 2023 total of 15.05 million. The negative values indicate obligation adjustments, deobligations, or award modifications outweighing new obligations in those years, so year-over-year totals should be interpreted as net funding movement rather than gross award volume.

How to interpret this page

This summary uses the provided FPDS Query aggregates for the last 10 years and reports only the supplied totals, counts, and annual net obligations. Agency and NAICS concentration are based on obligated dollars and award counts in the dataset, and annual trend figures reflect net obligated amounts as supplied, including negative values.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '7V2D3'
        AND content__award__purchaserInformation__contractingOfficeAgencyID IS NOT NULL
        AND content__award__purchaserInformation__contractingOfficeAgencyID != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY agency_id
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
2100 DEPT OF THE ARMY 2,334,069,969.56 2.33 billion 162

Insight

Over the last 10 years, SOUTHWEST VALLEY CONSTRUCTORS CO’s federal obligations are entirely concentrated in the Department of the Army, which accounts for the full $2.33 billion in obligated value. The vendor received 162 awards in this period, indicating repeated procurement activity rather than a single large transaction. This concentration suggests a highly focused customer base and limited agency diversification within the observed window.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '7V2D3'
        AND content__award__productOrServiceInformation__principalNAICSCode IS NOT NULL
        AND content__award__productOrServiceInformation__principalNAICSCode != ''
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY naics_code
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
237310 HIGHWAY, STREET, AND BRIDGE CONSTRUCTION 2,334,069,969.56 2.33 billion 162

Insight

Over the last 10 years, SOUTHWEST VALLEY CONSTRUCTORS CO’s obligations are fully concentrated in NAICS 237310, Highway, Street, and Bridge Construction, with $2.33 billion obligated across 162 awards. This indicates a highly specialized contract profile with no observable diversification across NAICS codes in the provided data. The average award value of about $14.4 million suggests a portfolio characterized by sustained, sizable infrastructure awards.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '7V2D3'
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
        AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
    GROUP BY year
)
ORDER BY year DESC
Year Total Obligated Readable Award Actions
2025 -262,912,150.55 -262.91 million 11
2024 -33,555,328.74 -33.56 million 13
2023 15,046,649.88 15.05 million 17
2022 -119,924,401.33 -119.92 million 18
2021 -30,639,486.00 -30.64 million 31
2020 1,120,102,686.30 1.12 billion 54
2019 1,645,952,000.00 1.65 billion 18

Insight

Over the last 10 years, SOUTHWEST VALLEY CONSTRUCTORS CO recorded $2.33 billion in obligated value across 162 awards, with activity highly concentrated in 2019 and 2020, which together account for most of the total value. Annual obligated amounts were positive in 2019 ($1.65 billion), 2020 ($1.12 billion), and 2023 ($15.05 million), but negative in 2021, 2022, 2024, and 2025, indicating significant downward adjustments or deobligations in later years. Award volume was highest in 2020 (54 awards) and remained moderate thereafter, but the value trend declined sharply after the 2019–2020 peak.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, and annual trends.

Continue from this last 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.