Award Number

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

Award number DENA0001942 for agency 8900 shows procurement activity in the last full year with 39 actions and $3.09 billion obligated.

This page summarizes award number DENA0001942 for agency ID 8900 during the last full year. The award recorded 39 actions with total obligated dollars of $3,086,581,078.03.

Generated at 03/20/2026

Analysis period: Last full year

Obligation totals are shown as both readable and exact values; average action value is based on the 39 recorded actions.

Agency ID
8900
PIID
DENA0001942
Type
Award
Total Obligated
3.09 billion
3,086,581,078.03
Actions
39
Average Action Value
79,143,104.56

Overview

Award number DENA0001942 is associated with agency ID 8900 and shows activity across the last full year. The award total obligated amount is $3,086,581,078.03, or about $3.09 billion, across 39 actions. The average action value is $79,143,104.56.

How to use this page

Use this page to review the award-level obligation total, action count, and average action value for DENA0001942. It supports quick comparison within agency 8900 and provides a single reference point for last-full-year procurement activity.

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 1 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 3,086,581,078.03 3.09 billion 39

Insight

Within the 1-year window for PIID DENA0001942, all reported obligations are concentrated in a single top agency: the Department of Energy (agency ID 8900). DOE accounts for $3.09 billion across 39 awards, indicating a highly concentrated obligation profile with no other agencies represented in the provided rows.

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 1 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 3,086,581,078.03 3.09 billion 39

Insight

The award activity in the 1-year window is fully concentrated with CONSOLIDATED NUCLEAR SECURITY LLC (CAGE 6NSM1), which accounted for $3.09 billion across 39 awards. This indicates a highly concentrated vendor profile for PIID DENA0001942, with no other vendors listed in the provided data. The distribution suggests the contract vehicle or award stream is dominated by a single incumbent/vendor relationship over the period.

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 1 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 3,086,581,078.03 3.09 billion 39

Insight

Over the 1-year window, obligations for PIID DENA0001942 are entirely concentrated in NAICS 561210, Facilities Support Services, with $3.09 billion across 39 awards. This indicates a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The award count suggests repeated use of the same service category rather than a broad mix of requirement types.

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 1 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 3,086,581,078.03 3.09 billion 39

Insight

For award DENA0001942 over the past 1 year, PSC M1JZ (Operation of Miscellaneous Buildings) accounts for all recorded obligations in this section, totaling $3.09 billion across 39 awards. This indicates a highly concentrated obligation profile within a single PSC, with no evidence of distribution across other product or service categories in the provided data. The volume of awards suggests repeated activity within the same PSC rather than a broad mix of procurement 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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 3,086,581,078.03 3.09 billion 39

Insight

For PIID DENA0001942 within the 1-year window, reported obligations total 3.09 billion across 39 awards in FY2025. This reflects a highly concentrated award profile, with substantial obligated value associated with a relatively limited number of actions. Because only one year is present, no year-over-year trend can be assessed from the provided data.

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