This page summarizes award number DENR0000031 for Agency ID 8900 across the last 10 years. It shows 38 award actions with total obligated value of $3.05 billion and an average action value of $80,132,972.38.
Award Number
Award Number 8900 / DENR0000031 Federal Contract Action Summary (Last 10 Years)
Federal procurement summary for award number DENR0000031 under Agency ID 8900, showing obligation and action history over the last 10 years.
Totals reflect the provided 10-year analysis window and the exact obligated amount of $3,045,052,950.54.
Overview
Award number DENR0000031 is associated with Agency ID 8900 and, within the last 10 years, records 38 award actions. The total obligated amount is $3,045,052,950.54, with an average action value of $80,132,972.38. These figures provide a concise view of the award's obligation volume and action activity over the selected period.
How to use this page
Use this page to review obligation totals and action counts for award number DENR0000031 in the selected 10-year window. The summary supports quick comparison of this award against other federal procurement records without adding assumptions beyond the provided 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 = 'DENR0000031'
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 | 3,045,052,950.54 | 3.05 billion | 38 |
Insight
For PIID DENR0000031 over the 10-year window, obligations are fully concentrated within the Department of Energy (Agency ID 8900). The award accounts for $3.05 billion across 38 obligations, indicating sustained funding activity within a single agency rather than distribution across multiple agencies.
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 = 'DENR0000031'
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 |
|---|---|---|---|---|
| BECHTEL MARINE PROPULSION CORPORATION | 1,609,560,494.00 | 1.61 billion | 13 | |
| BECHTEL MARINE PROPULSION CORPORATION | 52YT1 | 1,435,492,456.54 | 1.44 billion | 25 |
Insight
Top vendor obligations are highly concentrated with BECHTEL MARINE PROPULSION CORPORATION accounting for the largest share across the 10-year window. The same vendor appears in two record variants, one without a CAGE code and one with CAGE 52YT1, suggesting the obligation totals are split across identifiers rather than spread among multiple firms. Combined, these entries represent approximately $3.05 billion across 38 awards, indicating sustained reliance on a single contractor.
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 = 'DENR0000031'
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 | 3,045,052,950.54 | 3.05 billion | 38 |
Insight
Obligations for PIID DENR0000031 are entirely concentrated in NAICS 561210, Facilities Support Services, over the 10-year window. This category accounts for $3.05 billion across 38 awards, indicating a highly concentrated services portfolio with no diversification across other NAICS codes in the provided data. The award activity suggests sustained reliance on facilities support services for this instrument.
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 = 'DENR0000031'
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 |
|---|---|---|---|---|
| M181 | OPER OF GOVT R&D GOCO FACILITIES | 3,045,052,950.54 | 3.05 billion | 38 |
Insight
Obligations under PIID DENR0000031 are fully concentrated in PSC M181, Operations of Government R&D GOCO Facilities, totaling $3.05 billion across 38 awards over the 10-year window. This indicates a highly focused procurement profile with no evidence in the provided rows of material PSC diversification. The concentration suggests the award activity is driven by a single services category rather than a broad mix of requirements.
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 = 'DENR0000031'
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 | 1,609,560,494.00 | 1.61 billion | 13 |
| 2017 | 873,822,075.11 | 873.82 million | 11 |
| 2018 | 561,670,381.43 | 561.67 million | 14 |
Insight
Obligations for PIID DENR0000031 declined sharply over the period, falling from 1.61 billion in 2016 to 873.82 million in 2017 and 561.67 million in 2018. Award counts remained relatively stable, ranging from 11 to 14 actions, indicating that the lower obligated amounts were distributed across a similar number of awards rather than driven by fewer awards. This suggests a contraction in annual funding intensity, with 2016 materially more concentrated in obligated dollars than the subsequent 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.