Award Number

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

Procurement summary for award 89233224CNA000004 under agency ID 8900, showing obligations and action history over the last 5 years.

This award record covers PIID 89233224CNA000004 for agency ID 8900 across the last 5 years. It includes 34 award actions with total obligated amounts of 2.42 billion, for an average action value of 71.12 million.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and use the exact obligated amount of 2418200273.83.

Agency ID
8900
PIID
89233224CNA000004
Type
Award
Total Obligated
2.42 billion
2,418,200,273.83
Actions
34
Average Action Value
71,123,537.47

Overview

The award number 89233224CNA000004 is associated with agency ID 8900 and shows activity within the last 5 years. Over that period, the award recorded 34 actions and 2.42 billion in total obligated value, based on the provided exact total of 2418200273.83. The average action value for the record is 71,123,537.47.

How to use this page

Use this page to review the award-level obligation pattern, action count, and average action value for PIID 89233224CNA000004. It is suitable for procurement analysis, trend review, and linking this award record to other FPDS query results for agency ID 8900.

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 = '89233224CNA000004'
    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 2,418,200,273.83 2.42 billion 34

Insight

For this 5-year award view, obligations are fully concentrated within the Department of Energy, which accounts for $2.42 billion across 34 awards. This indicates the procurement activity associated with PIID 89233224CNA000004 is not dispersed across multiple top agencies. The concentration suggests a stable, agency-specific obligation pattern over the period.

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 = '89233224CNA000004'
        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
PANTEXAS DETERRENCE, LLC 9KD07 2,418,200,273.83 2.42 billion 34

Insight

Over the 5-year window, obligations are highly concentrated in a single vendor. PANTEXAS DETERRENCE, LLC (CAGE 9KD07) accounts for $2.42 billion across 34 awards, indicating repeated reliance on one contractor for this PIID. This pattern suggests a narrow award distribution 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 = '89233224CNA000004'
    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
561210 FACILITIES SUPPORT SERVICES 2,418,200,273.83 2.42 billion 34

Insight

Obligations for this award are fully concentrated in NAICS 561210, Facilities Support Services, with $2.42 billion obligated across 34 awards in the 5-year window. This indicates a narrow procurement profile and strong functional concentration in a single services category. The award-level distribution suggests repeated use of the same NAICS rather than a diversified mix of industries.

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 = '89233224CNA000004'
    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
M1JZ OPERATION OF MISCELLANEOUS BUILDINGS 2,418,200,273.83 2.42 billion 34

Insight

Obligations for PIID 89233224CNA000004 are fully concentrated in PSC M1JZ, Operation of Miscellaneous Buildings, with $2.42 billion obligated across 34 awards over the 5-year window. This indicates a highly focused procurement profile with no observable diversification across other PSCs in the provided data. The average obligation per award is substantial, consistent with a large recurring service or facilities operation requirement.

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 = '89233224CNA000004'
    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 963,049,286.38 963.05 million 9
2025 1,455,150,987.45 1.46 billion 25

Insight

Obligated funding for PIID 89233224CNA000004 increased from 963.05 million in 2024 across 9 awards to 1.46 billion in 2025 across 25 awards. This indicates both higher dollar concentration and a broader distribution of obligations in 2025, with award activity nearly tripling year over year. The change suggests materially expanded contracting volume in the most recent year within the 5-year window provided.

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.