This page summarizes award number W912PL19C0015 for agency ID 9700 across the last 10 years. The award shows total obligated amounts of 1.86 billion across 32 actions, with an average action value of 58,036,794.61.
Award Number
Award Number 9700 / W912PL19C0015 Federal Contract Action Summary (Last 10 Years)
Federal procurement summary for award W912PL19C0015 under agency ID 9700, covering obligations and actions over the last 10 years.
Totals reflect the supplied analysis window and may not represent the full life of the award outside that period.
Overview
Award W912PL19C0015 is associated with agency ID 9700 and shows 32 recorded actions in the last 10 years. Total obligated value is 1,857,177,427.39, which is readable as 1.86 billion. The average action value across the period is 58,036,794.61.
How to use this page
Use this page to review the obligation pattern and action count for this specific award identifier. The figures support basic award-level analysis, comparison with other awards, and quick reference during procurement review. The data is limited to the stated 10-year window and the values provided here.
Top Agencies
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W912PL19C0015'
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,
agency_name
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 2100 | DEPT OF THE ARMY | 1,857,177,427.39 | 1.86 billion | 32 |
Insight
Over the 10-year window for award PIID W912PL19C0015, obligations are fully concentrated in DEPT OF THE ARMY, which accounts for the entire reported total of $1.86 billion across 32 awards. This indicates a highly concentrated funding pattern with no diversification across agencies in the provided data. The distribution suggests the award is tied exclusively to a single agency relationship over the period reviewed.
Top Vendors
SELECT
vendor_name,
cage_code,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__vendor__vendorHeader__vendorName AS vendor_name,
ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W912PL19C0015'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
vendor_name,
cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
| Vendor | CAGE Code | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| SOUTHWEST VALLEY CONSTRUCTORS CO | 7V2D3 | 1,857,177,427.39 | 1.86 billion | 32 |
Insight
Obligations are highly concentrated with a single vendor. SOUTHWEST VALLEY CONSTRUCTORS CO (CAGE 7V2D3) accounts for $1.86 billion across 32 awards over the 10-year window, indicating a sustained and dominant share of activity for PIID W912PL19C0015. This pattern suggests limited vendor distribution for this award record.
Top NAICS
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W912PL19C0015'
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,
naics_name
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 237310 | HIGHWAY, STREET, AND BRIDGE CONSTRUCTION | 1,857,177,427.39 | 1.86 billion | 32 |
Insight
Over the 10-year window, obligations for award W912PL19C0015 are entirely concentrated in NAICS 237310, Highway, Street, and Bridge Construction. This NAICS accounts for $1.86 billion across 32 awards, indicating a highly focused procurement profile with no diversification evident in the provided data.
Top PSC Codes
SELECT
content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W912PL19C0015'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
psc_code,
psc_name
ORDER BY total_obligated DESC
LIMIT 10
| PSC Code | Description | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| Y1LB | CONSTRUCTION OF HIGHWAYS, ROADS, STREETS, BRIDGES, AND RAILWAYS | 1,857,177,427.39 | 1.86 billion | 32 |
Insight
Over the 10-year window, obligations for award W912PL19C0015 are entirely concentrated in PSC Y1LB, Construction of Highways, Roads, Streets, Bridges, and Railways. This PSC accounts for $1.86 billion across 32 actions, indicating a single-category funding profile with no observable distribution across other PSCs in the provided data. The pattern suggests sustained use of the award for highway and related infrastructure construction work.
Annual Trend
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
count() AS award_count
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'W912PL19C0015'
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 ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2019 | 1,299,000,000.00 | 1.30 billion | 7 |
| 2020 | 881,023,177.92 | 881.02 million | 18 |
| 2021 | 484,658.00 | 484.66 thousand | 5 |
| 2024 | -48,524,941.28 | -48.52 million | 1 |
| 2025 | -274,805,467.25 | -274.81 million | 1 |
Insight
Obligations are heavily concentrated in the earlier years of the 10-year window, with 2019 at 1.30 billion across 7 awards and 2020 at 881.02 million across 18 awards, followed by a sharp drop in 2021 to 484.66 thousand across 5 awards. Activity resumes only in 2024 and 2025, but both years reflect negative obligations, indicating substantial downward adjustments rather than new positive funding, at -48.52 million and -274.81 million respectively. Overall, the pattern suggests a front-loaded award with later deobligations and limited recent award activity.
Use FPDS Query for deeper award and vehicle analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, 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.