Award Number

Award Number 8900 / DENA0002839 Federal Contract Action Summary (Last 10 Years)

FPDS award page for award number DENA0002839 under agency ID 8900, summarizing obligations and action history over the last 10 years.

This page presents procurement activity for award number DENA0002839 across the last 10 years. The record shows 265 award actions with total obligated value of 15.26 billion and an average action value of 57.59 million.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ from other reporting periods or views.

Agency ID
8900
PIID
DENA0002839
Type
Award
Total Obligated
15.26 billion
15,261,920,163.70
Actions
265
Average Action Value
57,592,151.56

Overview

Award number DENA0002839 is associated with agency ID 8900 and shows substantial obligated activity over the last 10 years. The award totals 15,261,920,163.7 in obligations across 265 actions, with an average action value of 57,592,151.56. This page is intended to support review of the award’s procurement history within the stated analysis window.

How to use this page

Use this page to review the scale and frequency of obligated activity tied to award number DENA0002839. The action count and obligated totals provide a compact starting point for examining the award’s procurement record, while the analysis window limits the view to the last 10 years.

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 = 'DENA0002839'
    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 15,261,920,163.70 15.26 billion 265

Insight

For PIID DENA0002839 over the 10-year window, all reported obligations are concentrated within the Department of Energy (Agency ID 8900). The award reflects 15.26 billion across 265 awards, indicating substantial activity but no cross-agency distribution in the provided data. This concentration suggests the award is fully attributable to a single agency portfolio rather than dispersed 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 = 'DENA0002839'
        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
HONEYWELL INTERNATIONAL INC. 14061 14,246,688,909.10 14.25 billion 237
HONEYWELL INTERNATIONAL INC. 1,015,231,254.60 1.02 billion 28

Insight

Obligations on this award are highly concentrated in HONEYWELL INTERNATIONAL INC., which accounts for the dominant share of activity in the 10-year window. The vendor appears twice in the results, with CAGE 14061 associated with $14.25 billion across 237 awards and a separate uncoded entry totaling $1.02 billion across 28 awards. This pattern indicates substantial award volume clustered to the same vendor entity, with a smaller portion recorded without a CAGE code.

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 = 'DENA0002839'
    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 15,261,920,163.70 15.26 billion 265

Insight

Obligations for PIID DENA0002839 are fully concentrated in NAICS 561210, Facilities Support Services, with $15.26 billion obligated across 265 awards over the 10-year window. This indicates a highly focused procurement pattern with no visible diversification across other NAICS codes in the provided data. The volume of awards suggests repeated use of the same service category rather than broad contract 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 = 'DENA0002839'
    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 15,261,920,163.70 15.26 billion 265

Insight

Over the 10-year window, obligations under PIID DENA0002839 are fully concentrated in PSC M1JZ, Operation of Miscellaneous Buildings. This PSC accounts for $15.26 billion across 265 awards, indicating a sustained and highly focused procurement profile rather than a diversified 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 = 'DENA0002839'
    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 859,649,786.54 859.65 million 26
2017 751,148,556.83 751.15 million 28
2018 1,729,840,380.90 1.73 billion 25
2019 751,544,818.90 751.54 million 16
2020 1,484,030,556.87 1.48 billion 20
2021 1,986,871,969.28 1.99 billion 22
2022 1,608,122,563.11 1.61 billion 29
2023 2,068,405,594.11 2.07 billion 28
2024 1,759,295,538.97 1.76 billion 33
2025 2,263,010,398.19 2.26 billion 38

Insight

Annual obligations under PIID DENA0002839 are volatile but generally elevated across the 10-year window, ranging from $751.15 million in 2017 to $2.26 billion in 2025. Funding and award volume are not tightly proportional: 2018 and 2025 are the highest-obligation years, while 2025 has the highest award count at 38 and 2023 records similarly high obligations with 28 awards. The series indicates intermittent peaks rather than a steady upward trend, with notable dips in 2017 and 2019 followed by sustained higher obligations from 2021 onward.

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.