Award Number

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

Award number DENA0003525 for agency 8900 shows 45 actions in the last full year with total obligations of $5.79 billion.

This award page summarizes federal procurement activity for award number DENA0003525 under agency ID 8900. In the last full year, the award recorded 45 actions and $5,789,815,037.84 in total obligated dollars.

Generated at 03/20/2026

Analysis period: Last full year

Dollar values are shown as provided, with a readable total of $5.79 billion and an exact total of $5,789,815,037.84.

Agency ID
8900
PIID
DENA0003525
Type
Award
Total Obligated
5.79 billion
5,789,815,037.84
Actions
45
Average Action Value
128,662,556.40

Overview

The award number DENA0003525 record for agency ID 8900 reflects 45 award actions in the last full year. Total obligated dollars reached $5,789,815,037.84, or $5.79 billion when rounded to readable format, with an average action value of $128,662,556.40. These figures provide a concise view of activity and obligation magnitude for the selected analysis window.

How to use this page

Use this page to review the award-level obligation pattern and action count for DENA0003525 during the last full year. It can support procurement review, award tracking, and quick comparison against other award records or agency activity. The exact and readable obligation totals are both included for reference.

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 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 5,789,815,037.84 5.79 billion 45

Insight

Within the 1-year window for PIID DENA0003525, all reported obligations are concentrated in a single top agency: the Department of Energy (agency ID 8900). This agency accounts for $5.79 billion across 45 awards, indicating a highly concentrated obligation profile tied to one department. No other agencies are represented in the provided rows, so the observed distribution is fully concentrated in DOE.

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 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
NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC 14213 5,789,815,037.84 5.79 billion 45

Insight

Obligations for PIID DENA0003525 over the past year are fully concentrated with NATIONAL TECHNOLOGY & ENGINEERING SOLUTIONS OF SANDIA, LLC (CAGE 14213), which accounts for $5.79 billion across 45 awards. This indicates a highly concentrated vendor profile with all recorded obligated dollars in the provided results tied to a single contractor. The distribution suggests limited vendor diversification within the observed window.

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 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 5,789,815,037.84 5.79 billion 45

Insight

All reported obligations in the 1-year window are concentrated in NAICS 561210, Facilities Support Services. This category accounts for $5.79 billion across 45 awards, indicating a highly focused procurement profile with no visible diversification across other NAICS codes in the provided data. The concentration suggests this award is primarily associated with facilities support requirements.

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 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 5,789,815,037.84 5.79 billion 45

Insight

All obligations in the 1-year window are concentrated in PSC M1JZ, Operation of Miscellaneous Buildings, with $5.79 billion across 45 awards under PIID DENA0003525. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided data. The volume of awards suggests repeated obligations within the same service category rather than a broad mix of procurement needs.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 5,789,815,037.84 5.79 billion 45

Insight

For PIID DENA0003525 within Agency 8900 over the 1-year window, all reported obligation activity is concentrated in FY 2025. The award accounts for $5.79 billion across 45 awards, indicating substantial obligation volume with activity distributed across multiple actions rather than a single transaction. No cross-year trend can be assessed from the provided data because only one fiscal year is present.

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.