This page summarizes federal procurement activity tied to award number DENA0001942 for agency 8900. Over the last 10 years, the award shows 323 actions and total obligations of 28,891,015,569.52.
Award Number
Award Number 8900 / DENA0001942 Federal Contract Action Summary (Last 10 Years)
Award number DENA0001942 for agency 8900 covers 323 actions over the last 10 years, with 28.89 billion obligated.
Totals reflect the last 10 years of available activity and the readable obligated amount is rounded to 28.89 billion.
Overview
Award number DENA0001942 is associated with agency 8900 and records 323 actions in the last 10 years. Total obligated amount is 28,891,015,569.52, with an average action value of 89,445,868.64. The readable total obligation is 28.89 billion.
How to use this page
Use this page to review obligation totals, action volume, and average action value for award DENA0001942. The figures provide a concise summary for procurement analysis within the selected 10-year 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 = 'DENA0001942'
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 | 28,891,015,569.52 | 28.89 billion | 323 |
Insight
Over the 10-year window for PIID DENA0001942, obligations are fully concentrated within the Department of Energy (Agency ID 8900), which accounts for $28.89 billion across 323 awards. This indicates a highly centralized obligation pattern with no observable distribution across other agencies in the provided data. The volume of awards, paired with the substantial obligated amount, suggests sustained and significant funding activity within a single agency relationship.
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 = 'DENA0001942'
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 |
|---|---|---|---|---|
| CONSOLIDATED NUCLEAR SECURITY LLC | 6NSM1 | 26,059,701,914.12 | 26.06 billion | 285 |
| CONSOLIDATED NUCLEAR SECURITY LLC | 2,831,313,655.40 | 2.83 billion | 38 |
Insight
Award activity is highly concentrated with CONSOLIDATED NUCLEAR SECURITY LLC accounting for all listed obligations under this query. The CAGE-coded record (6NSM1) represents $26.06 billion across 285 awards, while a second record with the same vendor name but no CAGE code accounts for an additional $2.83 billion across 38 awards. This suggests the award history is dominated by a single vendor identity, with obligations distributed across two vendor records that should be reviewed for possible duplication or administrative variation.
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 = 'DENA0001942'
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 | 28,891,015,569.52 | 28.89 billion | 323 |
Insight
Obligations for PIID DENA0001942 over the 10-year window are fully concentrated in NAICS 561210, Facilities Support Services. This category accounts for $28.89 billion across 323 awards, indicating a sustained and heavily concentrated services profile rather than diversification across multiple NAICS codes. The volume of awards suggests repeated use of the same industrial classification for this award record.
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 = 'DENA0001942'
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 |
|---|---|---|---|---|
| M1JZ | OPERATION OF MISCELLANEOUS BUILDINGS | 28,891,015,569.52 | 28.89 billion | 323 |
Insight
For PIID DENA0001942 over the 10-year window, obligations are concentrated in PSC M1JZ, Operation of Miscellaneous Buildings, totaling $28.89 billion across 323 awards. This indicates the award portfolio is heavily focused in a single PSC category rather than broadly distributed across multiple product or service codes. The volume of awards paired with the very large obligated amount suggests sustained and recurring activity in this functional area.
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 = 'DENA0001942'
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 | 2,837,921,348.54 | 2.84 billion | 35 |
| 2017 | 1,649,849,204.06 | 1.65 billion | 38 |
| 2018 | 4,351,407,487.27 | 4.35 billion | 33 |
| 2019 | 952,135,070.51 | 952.14 million | 25 |
| 2020 | 2,839,814,722.25 | 2.84 billion | 31 |
| 2021 | 3,803,666,700.86 | 3.80 billion | 25 |
| 2022 | 2,654,430,214.62 | 2.65 billion | 31 |
| 2023 | 3,775,433,990.59 | 3.78 billion | 34 |
| 2024 | 2,939,775,752.79 | 2.94 billion | 32 |
| 2025 | 3,086,581,078.03 | 3.09 billion | 39 |
Insight
Obligations for PIID DENA0001942 are highly variable across the 2016–2025 window, ranging from 952.14 million in 2019 to 4.35 billion in 2018. Award counts are relatively stable by year, generally between 25 and 39, indicating that obligation volatility is driven more by award size than by award volume. The most recent years remain elevated, with 3.78 billion in 2023, 2.94 billion in 2024, and 3.09 billion in 2025, suggesting sustained funding activity after the 2019 low point.
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.