Award Number

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

FPDS award page for award number 89233218CNA000001 under agency 8900, summarizing obligations and actions over the last 10 years.

This page summarizes procurement activity for award 89233218CNA000001 for agency 8900 across the last 10 years. It shows 234 award actions with total obligations of 31.74 billion and an average action value of 135,639,956.4.

Generated at 03/20/2026

Analysis period: Last 10 years

Obligation figures are based on the provided analysis window and may reflect updated action records within the award history.

Agency ID
8900
PIID
89233218CNA000001
Type
Award
Total Obligated
31.74 billion
31,739,749,798.38
Actions
234
Average Action Value
135,639,956.40

Overview

Award 89233218CNA000001 is associated with agency 8900 and records 234 actions in the last 10 years. Total obligated amount is 31,739,749,798.38, with an average action value of 135,639,956.4.

How to use this page

Use this page to review award-level obligation totals, action volume, and average action value for the selected period. The figures support basic FPDS analysis of award activity without requiring manual aggregation.

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 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 31,739,749,798.38 31.74 billion 234

Insight

Within the 10-year window for award PIID 89233218CNA000001, all observed obligations are concentrated in the Department of Energy (agency 8900). DOE accounts for $31.74 billion across 234 awards, indicating a highly concentrated obligation profile at a single agency. This distribution suggests the award is materially associated with DOE activity over the period rather than being spread across multiple agencies.

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 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
TRIAD NATIONAL SECURITY, LLC 804U5 31,739,749,798.38 31.74 billion 234

Insight

Obligations under this award are fully concentrated with TRIAD NATIONAL SECURITY, LLC (CAGE 804U5), which accounts for the entire reported $31.74 billion over the 10-year window. The vendor received 234 awards, indicating repeated award activity rather than a broad distribution across multiple vendors. This pattern indicates a highly concentrated vendor base for this award record.

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 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 31,739,749,798.38 31.74 billion 234

Insight

Obligations for this award are fully concentrated in NAICS 561210, Facilities Support Services, with $31.74 billion obligated across 234 awards in the 10-year window. This indicates a highly focused procurement profile centered on facilities support, rather than a diversified mix of NAICS categories. The volume of awards alongside the magnitude of obligations suggests this is a sustained, large-scale service requirement.

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 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 31,739,749,798.38 31.74 billion 234

Insight

Over the 10-year window, PSC M1JZ (Operation of Miscellaneous Buildings) accounts for 31.74 billion in obligations across 234 awards for Agency 8900 under PIID 89233218CNA000001. This indicates a strong concentration of obligated dollars in a single PSC category, with spending spread across multiple awards rather than a single action. The volume and value together suggest this PSC is a principal driver of award activity in this scope.

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 10 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
2018 3,408,289,148.18 3.41 billion 12
2019 1,153,286,157.67 1.15 billion 18
2020 3,085,887,114.26 3.09 billion 30
2021 4,627,862,567.29 4.63 billion 28
2022 3,496,087,566.93 3.50 billion 36
2023 5,202,056,772.39 5.20 billion 36
2024 4,882,675,607.72 4.88 billion 35
2025 5,883,604,863.94 5.88 billion 39

Insight

Obligations for PIID 89233218CNA000001 are concentrated in the later years of the 10-year window, rising from 1.15 billion in 2019 to a high of 5.88 billion in 2025. Annual award counts also increase over time, moving from 12 in 2018 to 39 in 2025, with sustained activity at or above 35 awards in 2022 through 2025. The pattern indicates a higher obligation level and greater award volume in the most recent years, rather than a uniform distribution across the period.

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.