Award Number

Award Number 8900 / DENA0001942 Federal Contract Action Summary (Last 5 Years)

Federal procurement record for award number DENA0001942 at agency ID 8900, showing obligations and action history over the last 5 years.

This page summarizes award number DENA0001942 for agency ID 8900 using the last 5 years of obligation and action data. The record shows 161 award actions and a total obligated amount of 16.26 billion dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Figures reflect the provided analysis window and may differ from other reports if filters or rounding methods change.

Agency ID
8900
PIID
DENA0001942
Type
Award
Total Obligated
16.26 billion
16,259,887,736.89
Actions
161
Average Action Value
100,993,091.53

Overview

Over the last 5 years, award number DENA0001942 recorded 161 actions and $16,259,887,736.89 in total obligations. The average action value is $100,993,091.53, which indicates that the award includes a substantial volume of higher-value actions. This page presents the award-level summary for agency ID 8900 in a concise procurement format.

How to use this page

Use this page to review the obligation total, action count, and average action value for award number DENA0001942. It is useful for identifying the scale of activity tied to the award and for comparing this record with other awards under agency ID 8900.

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 5 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 16,259,887,736.89 16.26 billion 161

Insight

Over the 5-year window, obligations for PIID DENA0001942 are fully concentrated within the Department of Energy (Agency ID 8900), with no other top-agency entries reported. The award reflects 161 actions totaling $16.26 billion, indicating a high-volume, high-dollar relationship centered in a single department. This concentration suggests the award’s funding and obligation activity is not broadly distributed across agencies in the available data.

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 5 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 16,259,887,736.89 16.26 billion 161

Insight

Over the 5-year window, obligations under PIID DENA0001942 are fully concentrated with a single vendor, CONSOLIDATED NUCLEAR SECURITY LLC (CAGE 6NSM1). The vendor received 161 awards totaling $16.26 billion, indicating sustained and highly concentrated spending with no diversification across additional vendors in the provided data. This pattern suggests the award activity is dominated by a sole incumbent contractor relationship.

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 5 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 16,259,887,736.89 16.26 billion 161

Insight

Over the 5-year window for PIID DENA0001942 under agency 8900, obligations are fully concentrated in NAICS 561210, Facilities Support Services. This single NAICS accounts for $16.26 billion across 161 awards, indicating a highly concentrated procurement profile with no diversification across other NAICS codes in the provided data. The volume of awards suggests repeated obligation activity within the same services category rather than a broad mix of contracting work.

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 5 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 16,259,887,736.89 16.26 billion 161

Insight

Over the 5-year window, award PIID DENA0001942 is concentrated entirely in PSC M1JZ, Operation of Miscellaneous Buildings. This PSC accounts for $16.26 billion across 161 awards, indicating a highly focused obligation pattern rather than a distributed mix of product or service categories.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 over the 5-year window remain concentrated at the multi-billion-dollar level, ranging from $2.65 billion to $3.80 billion annually. After a decline in 2022, obligations rebounded in 2023, eased in 2024, and increased again in 2025 to $3.09 billion, indicating year-to-year variability rather than a sustained directional trend. Award counts also rose overall from 25 in 2021 to 39 in 2025, suggesting broader distribution across more awards even as obligation levels fluctuated.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.