This page summarizes federal procurement activity tied to award number 89243024CSC000002 for agency ID 8900 during the last 5 years. The award shows 44 actions and total obligated amounts of $1.96 billion.
Award Number
Award Number 8900 / 89243024CSC000002 Federal Contract Action Summary (Last 5 Years)
FPDS award page for award number 89243024CSC000002 under agency ID 8900, summarizing obligations and action activity over the last 5 years.
Totals reflect the provided analysis window and are based on total obligated exact of 1962572107.64 and an average action value of 44603911.54.
Overview
The award record for 89243024CSC000002 shows procurement activity concentrated in the last 5 years, with 44 award actions captured in the analysis window. Total obligated exact is 1962572107.64, which rounds to $1.96 billion, and the average action value is $44,603,911.54. These figures describe the award-level obligation profile as reported in the provided inputs.
How to use this page
Use this page to review award-level obligation volume and action count for 89243024CSC000002 under agency ID 8900. It is suited to high-level procurement review, trend screening, and cross-checking the scale of activity against other awards in the same agency context.
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 = '89243024CSC000002'
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,962,572,107.64 | 1.96 billion | 44 |
Insight
Within the 5-year window for award PIID 89243024CSC000002, all reported obligation is concentrated in a single top agency: the Department of Energy. DOE accounts for $1.96 billion across 44 awards, indicating a highly concentrated obligation pattern with no additional agencies represented in this section.
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 = '89243024CSC000002'
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 |
|---|---|---|---|---|
| FERMI FORWARD DISCOVERY GROUP, LLC | 9PW26 | 1,962,572,107.64 | 1.96 billion | 44 |
Insight
Over the 5-year window, obligations for this award are fully concentrated with FERMI FORWARD DISCOVERY GROUP, LLC (CAGE 9PW26), which accounts for $1.96 billion across 44 awards. This indicates a highly concentrated vendor distribution with repeated award activity to a single contractor rather than a diversified vendor base.
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 = '89243024CSC000002'
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 |
|---|---|---|---|---|
| 541715 | RESEARCH AND DEVELOPMENT IN THE PHYSICAL, ENGINEERING, AND LIFE SCIENCES (EXCEPT NANOTECHNOLOGY AND BIOTECHNOLOGY) | 1,962,572,107.64 | 1.96 billion | 44 |
Insight
For award PIID 89243024CSC000002 over the 5-year window, obligations are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology). This single NAICS accounts for $1.96 billion across 44 awards, indicating a highly focused procurement profile with no observed distribution across other NAICS codes in the provided data. The concentration suggests the award is consistently aligned to R&D activity within this scientific and technical 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 = '89243024CSC000002'
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 |
|---|---|---|---|---|
| M1HA | OPERATION OF GOVERNMENT-OWNED CONTRACTOR-OPERATED (GOCO) R&D FACILITIES | 1,962,572,107.64 | 1.96 billion | 44 |
Insight
Over the 5-year window, obligations for this award are fully concentrated in PSC M1HA, Operation of Government-Owned Contractor-Operated (GOCO) R&D Facilities. This PSC accounts for $1.96 billion across 44 awards, indicating a consistent and highly focused funding pattern rather than a diversified mix of products or services.
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 = '89243024CSC000002'
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 |
|---|---|---|---|
| 2024 | 756,591,030.15 | 756.59 million | 4 |
| 2025 | 1,205,981,077.49 | 1.21 billion | 40 |
Insight
Obligations for PIID 89243024CSC000002 increased from $756.59 million in 2024 across 4 awards to $1.21 billion in 2025 across 40 awards. This indicates a marked expansion in both funding and award activity year over year, with 2025 reflecting a much broader distribution of obligations. The sharp increase in award count suggests the workload or funding was less concentrated in 2025 than in 2024.
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.