This page presents the award record for PIID 89243024CSC000002 with a 10-year analysis window. The record shows 44 award actions and total obligated dollars of 1.96 billion.
Award Number
Award Number 8900 / 89243024CSC000002 Federal Contract Action Summary (Last 10 Years)
Federal procurement award page for award number 89243024CSC000002 under agency ID 8900, summarizing obligations and action history over the last 10 years.
Totals are based on the provided analysis window and reflect a total obligated amount of 1,962,572,107.64 with an average action value of 44,603,911.54.
Overview
The award record for PIID 89243024CSC000002 covers 44 actions within the last 10 years. Total obligated funding is 1,962,572,107.64, with an average action value of 44,603,911.54. This page is structured to support review of the award at the award-number level.
How to use this page
Use this page to review obligation totals and action volume associated with award number 89243024CSC000002. The figures can support FPDS-style analysis of award activity for agency ID 8900 over the stated period.
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 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 | 1,962,572,107.64 | 1.96 billion | 44 |
Insight
Within the 10-year window for award 89243024CSC000002, obligations are concentrated entirely under the Department of Energy, which accounts for $1.96 billion across 44 awards. This indicates a highly concentrated funding profile with no visible distribution across other agencies in the provided data. The award activity is therefore dominated by a single agency relationship rather than a broad interagency spread.
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 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 |
|---|---|---|---|---|
| FERMI FORWARD DISCOVERY GROUP, LLC | 9PW26 | 1,962,572,107.64 | 1.96 billion | 44 |
Insight
Over the 10-year window, obligations for PIID 89243024CSC000002 are fully concentrated with a single vendor, FERMI FORWARD DISCOVERY GROUP, LLC (CAGE 9PW26). The vendor accounts for $1.96 billion across 44 awards, indicating sustained and repeated obligation activity under this award. This pattern suggests a highly concentrated vendor relationship with no diversification reflected in the provided data.
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 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 |
|---|---|---|---|---|
| 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
Obligations for this award are fully concentrated in NAICS 541715, Research and Development in the Physical, Engineering, and Life Sciences (except Nanotechnology and Biotechnology), with $1.96 billion obligated across 44 awards over the 10-year window. This indicates a narrow scope of activity centered on R&D within this sector, with no diversification across other NAICS codes in the provided data. The volume and dollar concentration suggest this NAICS is the dominant driver of the award’s obligation history.
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 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 |
|---|---|---|---|---|
| M1HA | OPERATION OF GOVERNMENT-OWNED CONTRACTOR-OPERATED (GOCO) R&D FACILITIES | 1,962,572,107.64 | 1.96 billion | 44 |
Insight
Over the 10-year window, obligations under PIID 89243024CSC000002 are fully concentrated in PSC M1HA, indicating a single-service profile within the observed award history. This PSC accounts for $1.96 billion across 44 awards, which suggests sustained and repeated funding in operation of government-owned, contractor-operated R&D facilities. The absence of other PSCs indicates no diversification across product or service categories 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 = '89243024CSC000002'
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 |
|---|---|---|---|
| 2024 | 756,591,030.15 | 756.59 million | 4 |
| 2025 | 1,205,981,077.49 | 1.21 billion | 40 |
Insight
Obligations increased from 756.59 million across 4 awards in 2024 to 1.21 billion across 40 awards in 2025, indicating a sharp expansion in both funding and award volume. The 2025 activity is more distributed across a much larger number of awards, reducing concentration relative to 2024 while materially increasing total obligated value. This shift suggests the action moved from a small number of high-dollar awards to a broader award pattern in the following year.
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.