This award record summarizes procurement activity tied to award number DENA0002839 over the last 5 years. It reflects 150 award actions and $9,685,706,063.66 in total obligated funding for Agency ID 8900.
Award Number
Award Number 8900 / DENA0002839 Federal Contract Action Summary (Last 5 Years)
Award number DENA0002839 for Agency ID 8900 shows 150 actions in the last 5 years, with total obligated funding of $9.69 billion.
Amounts are based on the stated analysis window and are reported as total obligated exact and readable values.
Overview
The award record for DENA0002839 covers 150 actions in the last 5 years, with total obligated funding of $9,685,706,063.66. The average action value is $64,571,373.76, indicating substantial obligation amounts across the recorded actions. This page is focused on the award-level transaction history for Agency ID 8900.
How to use this page
Use this page to review the scale and pacing of obligations tied to award number DENA0002839. The action count, total obligated amount, and average action value provide a concise basis for comparing this award against other award records in the same 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 = 'DENA0002839'
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 | 9,685,706,063.66 | 9.69 billion | 150 |
Insight
Within the 5-year window for award PIID DENA0002839, all reported obligation is concentrated in a single top agency: the Department of Energy (Agency ID 8900). This agency accounts for $9.69 billion across 150 awards, indicating that the award activity is fully concentrated within one agency rather than distributed across multiple agencies. The pattern suggests a highly focused obligation footprint for this PIID over the period examined.
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 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 |
|---|---|---|---|---|
| HONEYWELL INTERNATIONAL INC. | 14061 | 9,685,706,063.66 | 9.69 billion | 150 |
Insight
Over the 5-year window for award PIID DENA0002839 under agency 8900, HONEYWELL INTERNATIONAL INC. (CAGE 14061) accounts for all listed vendor obligation, with $9.69 billion across 150 awards. This indicates strong vendor concentration in the award history and limited distribution among top vendors in the provided data.
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 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 | 9,685,706,063.66 | 9.69 billion | 150 |
Insight
Over the 5-year window for award DENA0002839, obligations are fully concentrated in NAICS 561210, Facilities Support Services. This category accounts for the entirety of reported obligated dollars, totaling $9.69 billion across 150 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data.
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 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 | 9,685,706,063.66 | 9.69 billion | 150 |
Insight
Over the 5-year window, PSC M1JZ (Operation of Miscellaneous Buildings) accounts for all recorded obligations in this section, totaling $9.69 billion across 150 awards. This indicates a highly concentrated spending profile under PIID DENA0002839, with no diversification across other PSCs in the provided data. The volume of awards suggests repeated procurement activity within a single service category rather than a broad mix of contract types.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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
Obligated amounts for PIID DENA0002839 remained consistently in the billion-dollar range over the 5-year window, with no single year dominating the profile. Funding declined from 1.99 billion in 2021 to 1.61 billion in 2022, then rebounded to 2.07 billion in 2023, dipped to 1.76 billion in 2024, and rose to a period high of 2.26 billion in 2025. Award counts increased from 22 in 2021 to 38 in 2025, indicating higher transaction volume alongside generally elevated obligation levels.
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.