This award record covers 259 actions across the last 10 years, with total obligated dollars of 2.19 billion. The average action value is 8.44 million, based on an exact total obligation of 2,185,922,965.2.
Award Number
Award Number 8900 / DEEM0001971 Federal Contract Action Summary (Last 10 Years)
Award number DEEM0001971 for agency ID 8900 shows federal obligation activity over the last 10 years.
Totals reflect the readable and exact obligation values provided for the analysis window and may round differently in display.
Overview
The award number DEEM0001971 record for agency ID 8900 shows sustained obligation activity in the last 10 years. Its 259 actions sum to 2,185,922,965.2 in exact obligated dollars, with a readable total of 2.19 billion and an average action value of 8,439,857.01.
How to use this page
Use this page to review obligation volume and action frequency tied to award DEEM0001971. The figures support quick comparison of overall obligated dollars, action count, and average action size within the stated analysis window.
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 = 'DEEM0001971'
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 | 2,185,922,965.20 | 2.19 billion | 259 |
Insight
For PIID DEEM0001971 over the 10-year window, all reported obligations are concentrated within the Department of Energy. The agency total is $2.19 billion across 259 awards, indicating repeated award activity rather than reliance on a single obligation event. This pattern suggests the contract or agreement has been sustained through multiple awards or actions within the same department.
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 = 'DEEM0001971'
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 |
|---|---|---|---|---|
| NUCLEAR WASTE PARTNERSHIP LLC | 6HF85 | 1,823,323,494.43 | 1.82 billion | 214 |
| NUCLEAR WASTE PARTNERSHIP LLC | 362,599,470.77 | 362.60 million | 45 |
Insight
Award activity is highly concentrated in NUCLEAR WASTE PARTNERSHIP LLC, which accounts for the largest share of obligations at 1.82 billion across 214 awards under CAGE 6HF85. A second row for the same vendor name, with no CAGE code listed, shows an additional 362.60 million across 45 awards, indicating the vendor is the dominant recipient across the 10-year window. Together, these rows suggest a strong concentration of obligations with limited vendor diversification within 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 = '8900' AND content__award__awardID__awardContractID__PIID = 'DEEM0001971'
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 |
|---|---|---|---|---|
| 561210 | FACILITIES SUPPORT SERVICES | 2,185,922,965.20 | 2.19 billion | 259 |
Insight
Obligations for PIID DEEM0001971 over the 10-year window are entirely concentrated in NAICS 561210, Facilities Support Services. This category accounts for $2.19 billion across 259 awards, indicating a sustained procurement pattern centered on facilities support. With only one NAICS reported in the section, the distribution is fully concentrated rather than diversified.
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 = 'DEEM0001971'
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 |
|---|---|---|---|---|
| F999 | OTHER ENVIRONMENTAL SERVICES | 2,185,922,965.20 | 2.19 billion | 259 |
Insight
Over the 10-year window for award DEEM0001971 under agency 8900, obligations are fully concentrated in PSC F999, Other Environmental Services. This PSC accounts for $2.19 billion across 259 awards, indicating a sustained and highly focused procurement pattern rather than a diversified services mix.
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 = 'DEEM0001971'
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 | 361,091,898.77 | 361.09 million | 44 |
| 2017 | 178,022,004.45 | 178.02 million | 25 |
| 2018 | 366,157,947.13 | 366.16 million | 37 |
| 2019 | 366,129,636.01 | 366.13 million | 22 |
| 2020 | 328,359,447.52 | 328.36 million | 36 |
| 2021 | 458,243,078.67 | 458.24 million | 36 |
| 2022 | 326,320,891.65 | 326.32 million | 44 |
| 2023 | -157,784,751.51 | -157.78 million | 11 |
| 2024 | -40,598,184.25 | -40.60 million | 3 |
| 2025 | -19,003.24 | -19.00 thousand | 1 |
Insight
Obligations for PIID DEEM0001971 were concentrated in 2016–2022, with annual totals generally in the $326 million to $458 million range and award counts between 22 and 44. Activity peaked in 2021 at $458.24 million across 36 awards, after a notable dip in 2017 to $178.02 million. From 2023 forward, obligations turned negative and fell sharply to -$157.78 million in 2023, then to -$40.60 million in 2024 and -$19.00 thousand in 2025, with award volume also dropping to 11, 3, and 1 awards, respectively.
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.