This page summarizes the award activity tied to PIID DEAC2708RV14800 for Agency ID 8900 during the last 10 years. The record shows 383 award actions and total obligations of 6,752,818,821.23, with an average action value of 17,631,380.73.
Award Number
Award Number 8900 / DEAC2708RV14800 Federal Contract Action Summary (Last 10 Years)
FPDS award record for award number DEAC2708RV14800 under Agency ID 8900, showing obligations and action history over the last 10 years.
Values are based on the provided analysis window and reflect the total obligated readable amount of 6.75 billion and the exact obligated total of 6752818821.23.
Overview
The award number DEAC2708RV14800 is associated with Agency ID 8900 and shows activity across the last 10 years. The record includes 383 award actions and a total obligated amount of 6,752,818,821.23. The average action value is 17,631,380.73, indicating repeated obligation activity within the analysis window.
How to use this page
Use this page to review obligation totals, action count, and average action value for the award. It supports quick comparison with other FPDS award records by showing a single award number, its agency context, and the measured activity over time. The figures on the page are limited to the provided analysis window and do not add detail beyond the supplied award data.
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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC2708RV14800'
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 |
|---|---|---|---|---|
| 8900 | ENERGY, DEPARTMENT OF | 6,752,818,821.23 | 6.75 billion | 383 |
Insight
For PIID DEAC2708RV14800 over the 10-year window, all recorded obligations in this section are concentrated within the Department of Energy (agency ID 8900). The award is associated with $6.75 billion across 383 actions, indicating a high degree of agency concentration rather than a distributed obligation pattern across multiple agencies.
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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC2708RV14800'
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 |
|---|---|---|---|---|
| WASHINGTON RIVER PROTECTION SOLUTIONS LLC | 4UWU0 | 5,811,455,023.05 | 5.81 billion | 323 |
| WASHINGTON RIVER PROTECTION SOLUTIONS LLC | 941,363,798.18 | 941.36 million | 60 |
Insight
Award activity for PIID DEAC2708RV14800 is highly concentrated in WASHINGTON RIVER PROTECTION SOLUTIONS LLC, which accounts for $5.81 billion across 323 awards. An additional $941.36 million is also attributed to the same vendor name without a CAGE code, across 60 awards. Taken together, these rows indicate that obligation volume is heavily concentrated with one vendor identity, with the award distribution split across two vendor records in the query output.
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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC2708RV14800'
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 |
|---|---|---|---|---|
| 562211 | HAZARDOUS WASTE TREATMENT AND DISPOSAL | 6,752,818,821.23 | 6.75 billion | 383 |
Insight
Obligations for this award are fully concentrated in NAICS 562211, Hazardous Waste Treatment and Disposal, totaling $6.75 billion across 383 awards over the 10-year window. This indicates a highly focused procurement profile with no observable NAICS diversification in the provided data. The volume of awards suggests repeated activity in the same service category rather than broad programmatic spread.
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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC2708RV14800'
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 |
|---|---|---|---|---|
| M300 | OPER OF GOVT RESTORATION | 6,752,818,821.23 | 6.75 billion | 383 |
Insight
Over the 10-year window for award DEAC2708RV14800 under agency 8900, obligations are fully concentrated in PSC M300 (OPER OF GOVT RESTORATION). This PSC accounts for $6.75 billion across 383 awards, indicating a sustained and highly focused service mix rather than a diversified procurement profile. The volume of awards suggests repeated use of the same PSC over time, with no other PSCs represented in the provided data.
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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEAC2708RV14800'
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 |
|---|---|---|---|
| 2016 | 904,148,490.18 | 904.15 million | 56 |
| 2017 | 620,348,825.28 | 620.35 million | 49 |
| 2018 | 752,137,354.34 | 752.14 million | 49 |
| 2019 | 716,416,533.11 | 716.42 million | 35 |
| 2020 | 840,292,190.79 | 840.29 million | 54 |
| 2021 | 827,893,632.44 | 827.89 million | 57 |
| 2022 | 657,709,486.53 | 657.71 million | 31 |
| 2023 | 770,754,935.84 | 770.75 million | 24 |
| 2024 | 649,927,824.17 | 649.93 million | 19 |
| 2025 | 13,189,548.55 | 13.19 million | 9 |
Insight
For award DEAC2708RV14800, annual obligations remain concentrated at a high level across the period, ranging from $13.19 million in 2025 to $904.15 million in 2016. Obligations declined from 2016 to 2017, recovered through 2021, then fell in 2022–2024, while award counts also generally decreased from 57 in 2021 to 19 in 2024. The 2025 total reflects a partial-year or incomplete period relative to prior full years and should be interpreted cautiously.
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.