Award Number

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

Procurement activity for award number DENA0002839 under agency ID 8900 during the last full year.

This page summarizes award number DENA0002839 for agency ID 8900 over the last full year. The award recorded 38 actions with total obligated dollars of $2.263 billion and an average action value of $59.55 million.

Generated at 03/20/2026

Analysis period: Last full year

Dollar values are shown as readable and exact totals for the selected analysis window.

Agency ID
8900
PIID
DENA0002839
Type
Award
Total Obligated
2.26 billion
2,263,010,398.19
Actions
38
Average Action Value
59,552,905.22

Overview

Award number DENA0002839 shows 38 recorded actions in the last full year. Total obligated amount reached $2,263,010,398.19, which is the basis for the $2.26 billion readable total and the reported average action value of $59,552,905.22. These figures describe activity tied to the selected award identifier and agency ID 8900 only.

How to use this page

Use this page to review the award-level obligation history for DENA0002839 across the last full year. The action count and obligation totals support basic volume and concentration analysis, while the average action value helps gauge the scale of individual award actions.

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 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 2,263,010,398.19 2.26 billion 38

Insight

Within the 1-year window for PIID DENA0002839, all reported obligations are concentrated in a single agency: the Department of Energy. DOE accounts for $2.26 billion across 38 awards, indicating a highly concentrated obligation profile with no other agencies represented in the provided 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 = '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 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
HONEYWELL INTERNATIONAL INC. 14061 2,263,010,398.19 2.26 billion 38

Insight

HONEYWELL INTERNATIONAL INC. is the sole top vendor for PIID DENA0002839 over the 1-year window, with 38 awards totaling $2.26 billion. This indicates highly concentrated obligation activity with all observed top-vendor funding attributable to a single contractor. The award count suggests repeated use of the vendor rather than reliance on a broad supplier base.

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 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 2,263,010,398.19 2.26 billion 38

Insight

Over the past 1 year, obligations for award DENA0002839 are fully concentrated in NAICS 561210, Facilities Support Services. This single NAICS category accounts for 2.26 billion across 38 awards, indicating a highly focused procurement profile within the period reviewed.

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 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 2,263,010,398.19 2.26 billion 38

Insight

Over the past 1 year, obligations under PIID DENA0002839 are concentrated in PSC M1JZ, Operation of Miscellaneous Buildings, totaling $2.26 billion across 38 awards. This indicates a high degree of spend concentration in a single services category, with the award activity centered on building operations. No other PSCs are provided for comparison in this section.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 2,263,010,398.19 2.26 billion 38

Insight

In the 1-year window, obligations for PIID DENA0002839 in agency 8900 are concentrated entirely in FY 2025, with $2.26 billion obligated across 38 awards. This indicates a high level of activity within a single fiscal year and no visible year-over-year distribution in the provided data. The award profile suggests substantial volume is concentrated in FY 2025 rather than spread across multiple years.

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.