This page summarizes procurement activity tied to award number DENA0003624 for agency ID 8900 over the last 5 years. The award shows 192 actions and total obligated funding of $4.97 billion.
Award Number
Award Number 8900 / DENA0003624 Federal Contract Action Summary (Last 5 Years)
Federal award record for award number DENA0003624 under agency ID 8900, covering the last 5 years of obligated action activity.
Totals reflect the provided analysis window and the exact obligated amount of $4,970,627,588.36, with an average action value of $25,888,685.36.
Overview
Award number DENA0003624 is associated with agency ID 8900 and shows procurement activity within the last 5 years. The record includes 192 award actions and a total obligated amount of $4,970,627,588.36, with an average action value of $25,888,685.36. These figures provide a concise view of the award’s scale and action frequency.
How to use this page
Use this page to review the award-level obligation total, action count, and average action value for DENA0003624. The data is useful for comparing activity across award records, tracking obligation concentration, and summarizing procurement volume within the stated 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 = 'DENA0003624'
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 | 4,970,627,588.36 | 4.97 billion | 192 |
Insight
For PIID DENA0003624 over the 5-year window, obligations are fully concentrated under the Department of Energy, which accounts for $4.97 billion across 192 awards. This indicates the award activity is entirely within a single agency, with no distribution across other agencies in the provided results. The pattern suggests a highly focused obligation base tied to one departmental entity.
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 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 |
|---|---|---|---|---|
| MISSION SUPPORT AND TEST SERVICES LLC | 7HSD0 | 4,970,627,588.36 | 4.97 billion | 192 |
Insight
Over the 5-year window, obligations for award DENA0003624 are fully concentrated with a single vendor, MISSION SUPPORT AND TEST SERVICES LLC (CAGE 7HSD0). The vendor accounts for $4.97 billion across 192 awards, indicating sustained and highly concentrated contract activity rather than a broadly distributed vendor base.
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 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 | 4,970,627,588.36 | 4.97 billion | 192 |
Insight
Over the 5-year window, obligations are fully concentrated in NAICS 561210, Facilities Support Services, totaling $4.97 billion across 192 awards. This indicates a highly focused procurement profile with no visible diversification across other NAICS codes in the provided data. The volume of awards alongside the large obligated amount suggests this code is the primary vehicle for the entity’s contracting activity for PIID DENA0003624.
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 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 | 4,970,627,588.36 | 4.97 billion | 192 |
Insight
Within the 5-year window, this award is entirely concentrated in PSC M1JZ, Operation of Miscellaneous Buildings. The reported obligations total $4.97 billion across 192 awards, indicating sustained and highly concentrated spending in a single services category. This pattern suggests the award’s obligation profile is dominated by building operations activity rather than a broader mix of PSCs.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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 remained at a high annual level across the 5-year window, ranging from $837.66 million in 2022 to $1.17 billion in 2025. After a decline in 2022, obligated dollars increased in each subsequent year, with the largest annual amount in 2025. Award counts were comparatively stable but varied between 28 and 45 per year, indicating moderate distribution across multiple awards rather than reliance on a single annual action.
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.