Award Number

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

Award number DENA0003624 for agency ID 8900 shows 45 award actions in the last full year with $1.17 billion obligated.

This page summarizes federal procurement activity for award number DENA0003624 under agency ID 8900 during the last full year. The award recorded 45 actions and $1,170,747,190.79 in total obligations, with an average action value of $26,016,604.24.

Generated at 03/20/2026

Analysis period: Last full year

Total obligated is shown in both readable and exact form; values reflect the analysis window provided.

Agency ID
8900
PIID
DENA0003624
Type
Award
Total Obligated
1.17 billion
1,170,747,190.79
Actions
45
Average Action Value
26,016,604.24

Overview

Award number DENA0003624 is the procurement record identified for agency ID 8900 in the last full year. The record totals 45 award actions and $1,170,747,190.79 in obligations, which is about $1.17 billion. The average action value across the period is $26,016,604.24.

How to use this page

Use this page to review the award-level spending profile associated with DENA0003624 over the stated analysis window. The action count and obligated totals provide a compact view of procurement activity, while the average action value offers a simple measure of scale across 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 = 'DENA0003624'
    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 1,170,747,190.79 1.17 billion 45

Insight

Within the 1-year window for PIID DENA0003624, all reported obligations are concentrated in a single agency: the Department of Energy. The agency accounts for $1.17 billion across 45 awards, indicating a highly concentrated award profile with no distribution across other agencies in the provided data. This suggests the award activity is primarily tied to DOE-managed obligations.

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 = 'DENA0003624'
        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
MISSION SUPPORT AND TEST SERVICES LLC 7HSD0 1,170,747,190.79 1.17 billion 45

Insight

Over the past 1 year, obligations under PIID DENA0003624 are fully concentrated with MISSION SUPPORT AND TEST SERVICES LLC (CAGE 7HSD0). This vendor accounts for the entire reported obligation of $1.17 billion across 45 awards, indicating a highly concentrated award distribution with no other vendors listed in this period.

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 = 'DENA0003624'
    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 1,170,747,190.79 1.17 billion 45

Insight

Obligations for this award are fully concentrated in NAICS 561210, Facilities Support Services, with $1.17 billion across 45 awards in the 1-year window. This indicates a high degree of alignment between the award activity and a single service category, with no evidence in the provided rows of diversification across other NAICS codes. The concentration suggests this NAICS is the primary driver of obligated dollars for the award.

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 = 'DENA0003624'
    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 1,170,747,190.79 1.17 billion 45

Insight

Over the past year, obligations under PIID DENA0003624 are concentrated entirely in PSC M1JZ, Operation of Miscellaneous Buildings. This PSC accounts for the full $1.17 billion obligated across 45 awards, indicating a highly concentrated award profile with no diversification across other PSCs in the provided data.

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 = 'DENA0003624'
    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 1,170,747,190.79 1.17 billion 45

Insight

For PIID DENA0003624, the 1-year annual trend shows 2025 obligations concentrated in a single reporting year, with $1.17 billion obligated across 45 awards. This indicates substantial award activity within the period rather than a spread across multiple years. The average obligated amount is high relative to the award count, suggesting a small number of large-dollar actions likely drive most of the total.

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.