Award Number

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

Federal procurement summary for award number DESC0014664 under agency ID 8900, covering the last full year of recorded actions and obligations.

The award number DESC0014664 shows 38 award actions in the last full year, with total obligations of $128,939,201.76. The average action value across that period was $3,393,136.89.

Generated at 03/20/2026

Analysis period: Last full year

Totals reflect the provided analysis window and may not include activity outside the last full year.

Agency ID
8900
PIID
DESC0014664
Type
Award
Total Obligated
128.94 million
128,939,201.76
Actions
38
Average Action Value
3,393,136.89

Overview

For the last full year, award number DESC0014664 under agency ID 8900 recorded 38 award actions and $128,939,201.76 in total obligated dollars. The average action value was $3,393,136.89, indicating a materially active award with repeated obligation activity over the period.

How to use this page

Use this page to review obligation volume and action frequency associated with DESC0014664 during the selected year. The figures are useful for comparing award activity across similar federal procurement records and for tracking how the obligated total is distributed across actions.

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 1 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 128,939,201.76 128.94 million 38

Insight

Within the 1-year window for PIID DESC0014664, all reported obligations are concentrated in a single top agency: the Department of Energy. DOE accounts for $128.94 million across 38 awards, indicating that this award activity is fully concentrated within one agency rather than distributed across multiple departments.

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 1 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 128,939,201.76 128.94 million 38

Insight

Within the 1-year window for PIID DESC0014664 under Agency ID 8900, obligations are fully concentrated with a single vendor: OAK RIDGE ASSOCIATED UNIVERSITIES, INCORPORATED (CAGE 8E862). This vendor received $128.94 million across 38 awards, indicating a repeated-award relationship rather than a one-time transaction. Because only one vendor appears in the provided rows, no vendor-level distribution or diversification is evident in this extract.

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 1 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 128,939,201.76 128.94 million 38

Insight

Over the 1-year window, obligations for PIID DESC0014664 are fully concentrated in NAICS 541990, All Other Professional, Scientific, and Technical Services. This category accounts for $128.94 million across 38 awards, indicating a broad but single-industry obligation profile rather than diversification across multiple NAICS codes. The concentration in one NAICS suggests this award activity is tightly focused within a specialized services 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 1 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 128,939,201.76 128.94 million 38

Insight

Over the past year, obligations for PIID DESC0014664 were fully concentrated in PSC U099 (Education/Training - Other), with $128.94 million across 38 awards. This indicates a single-category procurement pattern with no diversification across other PSCs in the provided data. The award count suggests recurring activity within the same service category rather than a one-time obligation.

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 1 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2025 128,939,201.76 128.94 million 38

Insight

In the 1-year window, FY 2025 obligations for PIID DESC0014664 under agency 8900 totaled $128.94 million across 38 awards. The activity is concentrated in a single fiscal year, indicating all observed obligation volume in this view occurred in 2025. With 38 awards supporting the total, the award activity reflects a moderate distribution across multiple actions rather than a single isolated obligation.

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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.