Award Number

Award Number 8900 / 89233218CNA000001 Federal Contract Action Summary (Last Year)

Federal procurement activity for award 89233218CNA000001 under agency ID 8900 in the last full year, showing obligations and action volume.

This page summarizes award number 89233218CNA000001 for agency ID 8900 over the last full year. The award shows total obligated funding of $5.88 billion across 39 actions.

Generated at 03/20/2026

Analysis period: Last full year

Figures shown here use the provided readable and exact totals, with an average action value of $150,861,663.18.

Agency ID
8900
PIID
89233218CNA000001
Type
Award
Total Obligated
5.88 billion
5,883,604,863.94
Actions
39
Average Action Value
150,861,663.18

Overview

Award 89233218CNA000001 recorded 39 award actions during the last full year. Total obligated funding was 5,883,604,863.94, which reads as $5.88 billion, and the average action value was 150,861,663.18.

How to use this page

Use this page to review the award-level obligation total and the number of recorded actions for the selected period. It can support basic procurement analysis, trend checks, and cross-referencing against other FPDS award records 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 = '89233218CNA000001'
    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 5,883,604,863.94 5.88 billion 39

Insight

Within the 1-year window for PIID 89233218CNA000001, obligations are concentrated entirely within the Department of Energy (agency ID 8900). The agency accounts for $5.88 billion across 39 awards, indicating a highly concentrated obligation profile with no diversification across other top agencies in the provided data. This pattern suggests the award’s funding activity is materially tied to a single agency relationship.

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 = '89233218CNA000001'
        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
TRIAD NATIONAL SECURITY, LLC 804U5 5,883,604,863.94 5.88 billion 39

Insight

Obligations in the 1-year window are fully concentrated with TRIAD NATIONAL SECURITY, LLC (CAGE 804U5), which accounts for $5.88 billion across 39 awards. This indicates a highly concentrated vendor distribution for PIID 89233218CNA000001, with no other vendors represented in the provided rows. The award pattern suggests repeated obligation activity to a single incumbent or sole supplier within 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 = '89233218CNA000001'
    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
561210 FACILITIES SUPPORT SERVICES 5,883,604,863.94 5.88 billion 39

Insight

Within the 1-year window for award 89233218CNA000001, obligations are fully concentrated in NAICS 561210, Facilities Support Services. This category accounts for $5.88 billion across 39 awards, indicating a substantial and highly focused spend pattern 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 = '89233218CNA000001'
    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
M1JZ OPERATION OF MISCELLANEOUS BUILDINGS 5,883,604,863.94 5.88 billion 39

Insight

Over the past 1 year, obligations under PIID 89233218CNA000001 are highly concentrated in PSC M1JZ, Operation of Miscellaneous Buildings. This PSC accounts for the full reported amount in this section, totaling 5.88 billion across 39 awards, indicating a dominant and narrowly distributed spend profile.

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 = '89233218CNA000001'
    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 5,883,604,863.94 5.88 billion 39

Insight

For PIID 89233218CNA000001, obligations in the 1-year window are concentrated entirely in FY 2025, with $5.88 billion obligated across 39 awards. This indicates a highly concentrated award profile within the period rather than a multi-year distribution. The volume of obligations relative to the award count suggests very large award values on average, but no year-over-year trend can be assessed from the single-year data 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 full year view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.