Award Number

Award Number 8900 / DESC0014664 Federal Contract Action Summary (Last 5 Years)

FPDS award page for award number DESC0014664 under agency ID 8900, summarizing obligation activity over the last 5 years.

This page summarizes federal procurement activity for award number DESC0014664. Over the last 5 years, the award records 235 actions and total obligated value of 1.47 billion.

Generated at 03/20/2026

Analysis period: Last 5 years

Amounts reflect the provided analysis window and may vary from totals in other reporting views due to timing and rounding.

Agency ID
8900
PIID
DESC0014664
Type
Award
Total Obligated
1.47 billion
1,465,273,973.29
Actions
235
Average Action Value
6,235,208.40

Overview

Award number DESC0014664 is associated with agency ID 8900 and shows sustained obligation activity across the last 5 years. The award totals 1,465,273,973.29 in obligated value across 235 actions, with an average action value of 6,235,208.4.

How to use this page

Use this page to review the scale and frequency of obligation activity tied to award number DESC0014664. The figures support quick comparison of total obligated value, action count, and average action value within the selected 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 = 'DESC0014664'
    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 1,465,273,973.29 1.47 billion 235

Insight

Over the 5-year window for PIID DESC0014664, all reported obligations in the top_agencies view are concentrated within the Department of Energy (agency ID 8900). The Department of Energy accounts for $1.47 billion across 235 awards, indicating full agency-level concentration in the available results. This pattern suggests the award activity is distributed entirely within a single agency rather than 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 = '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 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
OAK RIDGE ASSOCIATED UNIVERSITIES, INCORPORATED 8E862 1,465,273,973.29 1.47 billion 235

Insight

OAK RIDGE ASSOCIATED UNIVERSITIES, INCORPORATED (CAGE 8E862) is the only vendor listed in this 5-year window and accounts for $1.47 billion across 235 awards under PIID DESC0014664. This indicates a highly concentrated award profile, with all observed obligations in the section attributed to a single vendor. The volume of awards suggests repeated procurement activity rather than a one-time obligation pattern.

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 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
541990 ALL OTHER PROFESSIONAL, SCIENTIFIC, AND TECHNICAL SERVICES 1,465,273,973.29 1.47 billion 235

Insight

Over the 5-year window, award PIID DESC0014664 is entirely concentrated in NAICS 541990, All Other Professional, Scientific, and Technical Services. This NAICS accounts for $1.47 billion in obligated value across 235 awards, indicating a highly focused procurement profile with no observed distribution across other NAICS codes in the provided data.

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 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
U099 EDUCATION/TRAINING- OTHER 1,465,273,973.29 1.47 billion 235

Insight

Over the 5-year window, obligations under PIID DESC0014664 are fully concentrated in PSC U099, Education/Training- Other, totaling $1.47 billion across 235 awards. This indicates a single-category procurement profile with no diversification across other PSCs in the provided results. The volume of awards suggests repeated use of this services category rather than a one-time obligation event.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 increased from $273.25 million in FY 2021 to a peak of $387.11 million in FY 2024, indicating a sustained upward funding trend over most of the 5-year window. Award counts were relatively stable in FY 2021–2022 (64 and 68), then declined in FY 2023–2024 (34 and 31) despite higher obligated dollars, suggesting greater concentration in fewer awards. FY 2025 reflects a partial-year or reduced-obligation period at $128.94 million across 38 awards, so it is not directly comparable to prior full-year totals.

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.