Award Number

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

Federal award record for award number DENA0003525 under agency ID 8900, showing obligations and action history for the last 5 years.

This page summarizes award number DENA0003525 for agency ID 8900 over the last 5 years. The record shows 177 award actions with total obligated spending of 24.54 billion dollars.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and may differ from source systems if reporting updates are applied later.

Agency ID
8900
PIID
DENA0003525
Type
Award
Total Obligated
24.54 billion
24,539,829,846.06
Actions
177
Average Action Value
138,643,106.47

Overview

Award number DENA0003525 is associated with agency ID 8900 and shows 177 actions in the last 5 years. Total obligated value is 24,539,829,846.06, with an average action value of 138,643,106.47.

How to use this page

Use this page to review the spending volume and action count tied to award DENA0003525. The figures provide a concise basis for comparing this award with other FPDS 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 = 'DENA0003525'
    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 24,539,829,846.06 24.54 billion 177

Insight

Within the 5-year window for PIID DENA0003525, all reported obligations are concentrated in the Department of Energy (Agency ID 8900). The award records 177 actions with total obligations of $24.54 billion, indicating a high degree of agency concentration for this award. No other top-agency entries are provided, so distribution across agencies cannot be further assessed from the supplied 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 = 'DENA0003525'
        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
NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC 14213 24,539,829,846.06 24.54 billion 177

Insight

Obligations are fully concentrated with NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC (CAGE 14213), which accounts for the entirety of the top-vendor value reflected here. Over the 5-year window, this vendor received 177 awards totaling $24.54 billion, indicating a highly concentrated award distribution for PIID DENA0003525.

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 = 'DENA0003525'
    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 24,539,829,846.06 24.54 billion 177

Insight

Over the past 5 years, obligations for award PIID DENA0003525 are fully concentrated in NAICS 561210, Facilities Support Services. This single NAICS accounts for $24.54 billion across 177 awards, indicating a highly focused procurement pattern with no diversification reflected 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 = 'DENA0003525'
    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 24,539,829,846.06 24.54 billion 177

Insight

Over the past 5 years, award PIID DENA0003525 is fully concentrated in PSC M1JZ, Operation of Miscellaneous Buildings. The award totals $24.54 billion across 177 obligations, indicating a highly concentrated procurement pattern with no other PSCs represented in the provided results. This suggests the award’s obligated activity is consistently associated with building operations services rather than a diversified mix of products or services.

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 = 'DENA0003525'
    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 4,728,719,100.20 4.73 billion 28
2022 3,899,409,659.40 3.90 billion 36
2023 5,102,717,208.01 5.10 billion 31
2024 5,019,168,840.61 5.02 billion 37
2025 5,789,815,037.84 5.79 billion 45

Insight

Obligations for PIID DENA0003525 under agency 8900 fluctuated over the five-year window, declining from $4.73 billion in 2021 to $3.90 billion in 2022, then rebounding above $5.0 billion in 2023 and 2024. The highest annual obligation occurred in 2025 at $5.79 billion, alongside the highest award count at 45, indicating both increased funding and a broader distribution of awards in the most recent year. Overall, the pattern reflects a recent upward shift in both obligated dollars and award volume after a brief dip in 2022.

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.