This page summarizes the award history for PIID DESC0012704 for the last full year. The award recorded 37 actions and total obligated amount of 900,362,483.03, with an average action value of 24,334,121.16.
Award Number
Award Number 8900 / DESC0012704 Federal Contract Action Summary (Last Year)
Federal procurement award record for award number DESC0012704 under agency ID 8900, showing last full year obligation and action activity.
Obligation totals are shown in both readable and exact formats and reflect the analysis window provided.
Overview
For the last full year, award number DESC0012704 under agency ID 8900 shows 37 recorded actions and total obligations of 900,362,483.03. The average action value across the period was 24,334,121.16, indicating a high-dollar award with repeated activity during the analysis window. These figures describe the award record only and do not add detail beyond the provided inputs.
How to use this page
Use this page to review the award's obligation total, action count, and average action value for the selected period. It is suitable for procurement analysis, reporting, and search by award number or agency ID. The page is limited to the provided last full year summary for PIID DESC0012704.
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 = 'DESC0012704'
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 | 900,362,483.03 | 900.36 million | 37 |
Insight
Within the 1-year window for PIID DESC0012704, all reported obligations are concentrated in a single top agency: the Department of Energy. The agency accounts for $900.36 million across 37 awards, indicating that obligation activity is fully concentrated within one agency rather than distributed across multiple agencies. This pattern suggests a highly focused award profile for the period reviewed.
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 = 'DESC0012704'
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 |
|---|---|---|---|---|
| BROOKHAVEN SCIENCE ASSOCIATES, LLC | 4KUZ2 | 900,362,483.03 | 900.36 million | 37 |
Insight
Within the 1-year window for PIID DESC0012704, BROOKHAVEN SCIENCE ASSOCIATES, LLC is the sole top vendor identified and accounts for $900.36 million across 37 awards. This indicates very high vendor concentration and a heavily skewed distribution of obligations toward a single contractor. The average obligation per award is substantial, suggesting repeated or large-value awards to the same vendor over the period.
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 = 'DESC0012704'
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 |
|---|---|---|---|---|
| 541712 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT BIOTECHNOLOGY) | 900,362,483.03 | 900.36 million | 37 |
Insight
Obligations for DESC0012704 over the past year are fully concentrated in NAICS 541712, Research and Development in the Physical, Engineering, and Life Sciences (except Biotechnology). The activity totals $900.36 million across 37 awards, indicating a narrowly focused procurement profile within this NAICS category. No additional NAICS codes are present in the provided data, so the observed distribution is entirely concentrated in one code.
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 = 'DESC0012704'
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 |
|---|---|---|---|---|
| M1HA | OPERATION OF GOVERNMENT-OWNED CONTRACTOR-OPERATED (GOCO) R&D FACILITIES | 900,362,483.03 | 900.36 million | 37 |
Insight
Obligations under PIID DESC0012704 in the last 1 year are entirely concentrated in PSC M1HA, Operation of Government-Owned Contractor-Operated (GOCO) R&D Facilities. This PSC accounts for $900.36 million across 37 awards, indicating a highly focused obligation pattern with no diversification across other PSCs in the provided data.
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 = 'DESC0012704'
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 | 900,362,483.03 | 900.36 million | 37 |
Insight
For FY2025, this award is highly concentrated, with $900.36 million obligated across 37 awards. The average obligation per award is substantial, indicating that funding is distributed across a relatively small number of actions rather than broadly dispersed. With only one year in the 1-year window, no year-over-year trend can be assessed from the provided data.
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.