This page presents procurement activity for award number DESC0014664 over the last 10 years. The award records 473 actions and total obligated amounts of 3.01 billion dollars.
Award Number
Award Number 8900 / DESC0014664 Federal Contract Action Summary (Last 10 Years)
Federal award number DESC0014664 for Agency ID 8900 summarizes 10 years of obligation and action activity.
Totals shown reflect the provided analysis window and may differ by rounding from the exact obligated value of 3008242413.13.
Overview
Award number DESC0014664 is associated with Agency ID 8900 and shows 473 recorded actions in the last 10 years. Total obligated funding is 3,008,242,413.13, which rounds to 3.01 billion dollars, and the average action value is 6,359,920.54. The record provides a consolidated view of obligation activity for this award identifier.
How to use this page
Use this page to review the scale and frequency of obligation changes tied to award number DESC0014664. The action count and average action value can help frame how activity has been distributed across the analysis window. This summary is most useful as a starting point for deeper review of the underlying FPDS records.
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 = 'DESC0014664'
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,008,242,413.13 | 3.01 billion | 473 |
Insight
Over the 10-year window, obligations for PIID DESC0014664 are fully concentrated in a single agency: the Department of Energy (Agency ID 8900). This agency accounts for $3.01 billion across 473 awards, indicating sustained use of the award within one departmental portfolio rather than broad cross-agency distribution.
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 = 'DESC0014664'
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 |
|---|---|---|---|---|
| OAK RIDGE ASSOCIATED UNIVERSITIES, INCORPORATED | 8E862 | 2,544,052,482.19 | 2.54 billion | 439 |
| OAK RIDGE ASSOCIATED UNIVERSITIES, INCORPORATED | 464,189,930.94 | 464.19 million | 34 |
Insight
Award activity for PIID DESC0014664 is highly concentrated in OAK RIDGE ASSOCIATED UNIVERSITIES, INCORPORATED, which accounts for the dominant share of obligations across the 10-year window. The vendor appears in two rows, with CAGE 8E862 associated with $2.54 billion across 439 awards and an additional $464.19 million across 34 awards without a CAGE code listed. This pattern indicates a sustained, high-volume relationship with limited vendor dispersion.
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 = 'DESC0014664'
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 |
|---|---|---|---|---|
| 541990 | ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES | 3,008,242,413.13 | 3.01 billion | 473 |
Insight
Over the 10-year window, award PIID DESC0014664 is concentrated in NAICS 541990, ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES. This category accounts for $3.01 billion in obligated funds across 473 awards, indicating a broad but highly concentrated procurement pattern within a single NAICS code. No other NAICS codes are provided here for comparison, so the section reflects complete concentration in the reported category.
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 = 'DESC0014664'
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 |
|---|---|---|---|---|
| U099 | EDUCATION/TRAINING- OTHER | 3,008,242,413.13 | 3.01 billion | 473 |
Insight
Obligations under PIID DESC0014664 are fully concentrated in PSC U099, Education/Training- Other, with $3.01 billion obligated across 473 awards over the 10-year window. This indicates a highly focused procurement profile with no diversification across other PSCs in the provided results. The volume of awards relative to total obligated dollars suggests repeated use of this service category rather than reliance on a small number of exceptionally large actions.
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 = 'DESC0014664'
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 | 449,301,427.48 | 449.30 million | 28 |
| 2017 | 293,018,295.19 | 293.02 million | 54 |
| 2018 | 265,570,701.11 | 265.57 million | 52 |
| 2019 | 257,794,830.63 | 257.79 million | 51 |
| 2020 | 277,283,185.43 | 277.28 million | 53 |
| 2021 | 273,253,375.75 | 273.25 million | 64 |
| 2022 | 315,651,346.43 | 315.65 million | 68 |
| 2023 | 360,319,777.49 | 360.32 million | 34 |
| 2024 | 387,110,271.86 | 387.11 million | 31 |
| 2025 | 128,939,201.76 | 128.94 million | 38 |
Insight
Obligations for PIID DESC0014664 under Agency 8900 declined from 449.30 million in 2016 to a low range of 257.79 million to 277.28 million in 2019–2021, then increased to 315.65 million in 2022 and 387.11 million in 2024 before dropping to 128.94 million in 2025. Award volume was more distributed, ranging from 28 to 68 awards annually, with the highest counts in 2021–2022 and lower counts in 2023–2024 despite higher obligation levels. This indicates moderate year-to-year variability, with spend concentrated in the earlier part of the period and a late-period increase followed by a partial-year or reduced-obligation result in 2025.
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.