Award Number

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

Federal procurement award page for award number 89233224CNA000004 under agency ID 8900, summarizing obligation and action history over the last 10 years.

This page presents award-level activity for PIID 89233224CNA000004 within agency ID 8900. Over the last 10 years, the award shows 34 actions and $2,418,200,273.83 in total obligated amount, with an average action value of $71,123,537.47.

Generated at 03/20/2026

Analysis period: Last 10 years

Amounts reflect the analyzed 10-year window and are reported as total obligated exact and readable values.

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 record for PIID 89233224CNA000004 shows sustained activity across the last 10 years, with 34 reported actions. Total obligated amount equals $2,418,200,273.83, which is displayed on the page as $2.42 billion for readability. The average action value is $71,123,537.47.

How to use this page

Use this page to review award-level funding history and compare the total obligated amount against the action count. The figures help identify the scale of activity associated with PIID 89233224CNA000004 during the selected 10-year 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 = '89233224CNA000004'
    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 2,418,200,273.83 2.42 billion 34

Insight

For this award, obligations are fully concentrated in the Department of Energy, which accounts for $2.42 billion across 34 awards in the 10-year window. This indicates a narrow agency distribution and suggests the action is part of a sustained funding relationship within a single department rather than a broadly dispersed award pattern.

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

Insight

PANTEXAS DETERRENCE, LLC is the sole vendor listed in this 10-year view, accounting for $2.42 billion across 34 awards. This indicates complete vendor concentration within the provided results for PIID 89233224CNA000004 under Agency ID 8900. The distribution suggests a sustained award relationship rather than broad vendor dispersion.

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 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
561210 FACILITIES SUPPORT SERVICES 2,418,200,273.83 2.42 billion 34

Insight

For award PIID 89233224CNA000004 over the 10-year window, obligations are entirely concentrated in NAICS 561210, Facilities Support Services. This NAICS accounts for 34 awards totaling $2.42 billion, indicating a highly focused procurement profile with no diversification across other NAICS codes in the provided data.

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

Insight

Over the 10-year window, obligations are fully concentrated in PSC M1JZ, Operation of Miscellaneous Buildings, with $2.42 billion across 34 awards. This indicates a clear single-category procurement pattern for this award, with no evidence in the provided rows of obligations spread across other PSCs. The award volume is moderate relative to the obligated value, suggesting repeated activity in the same services category rather than broad PSC diversification.

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 10 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

Obligations increased from $963.05 million in 2024 across 9 awards to $1.46 billion in 2025 across 25 awards, indicating a higher volume of activity and larger cumulative funding in the later year. The 2025 value represents a substantial concentration of obligations within the award history captured in this 10-year window. This pattern suggests the award became more active and more heavily obligated in 2025 relative to 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.