This page summarizes award number DENA0003624 for agency ID 8900 across the last 10 years. The record shows 287 award actions and total obligated dollars of 7,075,485,339.77, with an average action value of 24,653,259.02.
Award Number
Award Number 8900 / DENA0003624 Federal Contract Action Summary (Last 10 Years)
Federal procurement award page for award number DENA0003624 under agency ID 8900, showing obligation and action activity over the last 10 years.
Amounts reflect the provided analysis window and may differ from values shown in other reports due to rounding or update timing.
Overview
Award number DENA0003624 is associated with agency ID 8900 and records activity across the last 10 years. The reported total obligated amount is 7,075,485,339.77 across 287 award actions, yielding an average action value of 24,653,259.02. This page is intended to support basic review of award-level procurement activity.
How to use this page
Use this page to review the scale and frequency of obligation activity tied to award DENA0003624. The award action count and obligated totals provide a compact view of how the record changed over the analysis window. For precise reporting, compare these figures with the underlying transaction-level data.
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 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 | 7,075,485,339.77 | 7.08 billion | 287 |
Insight
Within the 10-year window for PIID DENA0003624, all recorded obligations are concentrated in a single top agency: the Department of Energy (agency 8900). The award is associated with 287 actions and total obligations of $7.08 billion, indicating sustained funding volume under one agency rather than a broad distribution across multiple agencies. This concentration suggests the award is highly agency-specific, with no evidence here of diversification in obligated funding.
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 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 |
|---|---|---|---|---|
| MISSION SUPPORT AND TEST SERVICES LLC | 7HSD0 | 7,075,485,339.77 | 7.08 billion | 287 |
Insight
Over the 10-year window for award DENA0003624 under agency 8900, obligations are fully concentrated with a single vendor: MISSION SUPPORT AND TEST SERVICES LLC (CAGE 7HSD0). The vendor accounts for $7.08 billion across 287 awards, indicating a highly concentrated award and obligation pattern with no other vendors represented in the provided data. This level of concentration suggests sustained reliance on one incumbent contractor over the 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 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 | 7,075,485,339.77 | 7.08 billion | 287 |
Insight
For PIID DENA0003624 over the 10-year window, obligations are fully concentrated in NAICS 561210, Facilities Support Services. This code accounts for $7.08 billion across 287 awards, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data. The concentration suggests sustained reliance on facilities support services rather than a broad mix of goods or services.
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 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 | 7,075,485,339.77 | 7.08 billion | 287 |
Insight
Over the 10-year window, PSC M1JZ (Operation of Miscellaneous Buildings) accounts for the full reported obligation profile in this section, totaling $7.08 billion across 287 awards. This indicates a highly concentrated procurement pattern centered on building operations activities rather than a broad mix of product or service categories. The award count suggests repeated procurement action within the same PSC, consistent with sustained programmatic demand under PIID DENA0003624.
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 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2017 | 275,204,793.07 | 275.20 million | 9 |
| 2018 | 956,985,245.96 | 956.99 million | 33 |
| 2019 | 212,548,931.20 | 212.55 million | 21 |
| 2020 | 660,118,781.18 | 660.12 million | 32 |
| 2021 | 995,786,892.96 | 995.79 million | 28 |
| 2022 | 837,662,500.15 | 837.66 million | 42 |
| 2023 | 922,022,642.74 | 922.02 million | 41 |
| 2024 | 1,044,408,361.72 | 1.04 billion | 36 |
| 2025 | 1,170,747,190.79 | 1.17 billion | 45 |
Insight
Obligations for PIID DENA0003624 are concentrated in the later years of the 10-year window, with annual obligated amounts rising from 275.20 million in 2017 to 1.17 billion in 2025. Activity is uneven year to year: a sharp increase in 2018 is followed by lower obligations in 2019, then sustained higher levels from 2020 onward, with 2024 and 2025 exceeding 1.0 billion. Award volume also expands over time, increasing from 9 awards in 2017 to 45 in 2025, indicating both higher funding and broader annual distribution in the most recent 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.