Award Number

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

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

This page summarizes the award-level procurement activity for PIID DENA0003525 within agency ID 8900. The record reflects 285 award actions and total obligated dollars of 39.31 billion over the analysis window.

Generated at 03/20/2026

Analysis period: Last 10 years

Total obligated amount is 39,308,850,163.32 and average action value is 137,925,790.05 for the last 10 years.

Agency ID
8900
PIID
DENA0003525
Type
Award
Total Obligated
39.31 billion
39,308,850,163.32
Actions
285
Average Action Value
137,925,790.05

Overview

The award record for PIID DENA0003525 covers 285 actions in the last 10 years. Total obligations equal 39,308,850,163.32, with an average action value of 137,925,790.05. These figures describe the procurement activity associated with this award number, not a broader agency total.

How to use this page

Use this page to review the award’s obligation level and action count over the selected period. It is also useful for comparing this award against other award numbers within agency ID 8900 using 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 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 39,308,850,163.32 39.31 billion 285

Insight

Over the 10-year window, obligations for PIID DENA0003525 are fully concentrated in a single top agency: the Department of Energy (Agency ID 8900). DOE accounts for $39.31 billion across 285 awards, indicating that this award activity is entirely agency-specific within the provided top-agency data. This concentration suggests a sustained procurement relationship with DOE rather than a broadly distributed award profile.

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 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
NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC 14213 36,782,011,557.11 36.78 billion 267
NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC 7MZ99 2,522,076,009.58 2.52 billion 16
NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC 4,762,596.63 4.76 million 2

Insight

Obligations for PIID DENA0003525 are highly concentrated with NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC, which accounts for the vast majority of dollars across all listed entries. The vendor appears under multiple CAGE codes, led by 14213 at 36.78 billion across 267 awards and 7MZ99 at 2.52 billion across 16 awards, with a smaller uncoded entry of 4.76 million across 2 awards. This distribution indicates a dominant incumbent relationship with limited obligation spread across distinct registrations.

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 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 39,308,850,163.32 39.31 billion 285

Insight

Obligations for PIID DENA0003525 are fully concentrated in NAICS 561210, Facilities Support Services, with $39.31 billion obligated across 285 awards over the 10-year window. This indicates a highly focused procurement profile with no observed NAICS diversification in the provided data. The volume of awards suggests repeated use of the same service category rather than a broad mix of contract 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 = 'DENA0003525'
    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 39,308,850,163.32 39.31 billion 285

Insight

Over the 10-year window, award PIID DENA0003525 is fully concentrated in PSC M1JZ, Operation of Miscellaneous Buildings, with 285 awards totaling $39.31 billion. This indicates a highly focused procurement profile with no evidence of PSC diversification in the provided data. The volume of obligations and award count suggest sustained, recurring activity within a single service category.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2016 4,762,596.63 4.76 million 2
2017 3,509,877,361.73 3.51 billion 30
2018 5,385,664,559.03 5.39 billion 29
2019 1,972,829,573.21 1.97 billion 23
2020 3,895,886,226.66 3.90 billion 24
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 on PIID DENA0003525 were highly concentrated after 2016, rising from 4.76 million across 2 awards in 2016 to multibillion-dollar annual levels in every subsequent year. The largest annual obligations occurred in 2018 and 2025, at 5.39 billion and 5.79 billion, respectively, while 2019 was the low point at 1.97 billion. Award count generally increased over time, from 2 in 2016 to 45 in 2025, indicating broader annual activity alongside sustained high-dollar 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.