This award record page presents procurement activity tied to award number 89233218CNA000001 within agency ID 8900. The analysis window covers the last 5 years and shows 174 actions with total obligated value of $24,092,287,378.27.
Award Number
Award Number 8900 / 89233218CNA000001 Federal Contract Action Summary (Last 5 Years)
Award number 89233218CNA000001 for agency 8900 summarizes 174 recorded actions over the last 5 years and $24.09 billion in obligated value.
Total obligated values are shown in both readable format and exact dollars, and the average action value is $138,461,421.71.
Overview
This page centers on award number 89233218CNA000001 and its procurement activity under agency ID 8900. Over the last 5 years, the award shows 174 actions and total obligated value of $24,092,287,378.27, with an average action value of $138,461,421.71. The readable total obligated amount is $24.09 billion.
How to use this page
Use this page to review the award-level activity profile, including action count, total obligated value, and average action value within the defined analysis window. It is intended for quick reference and record review, not for interpretation beyond the provided FPDS fields.
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 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 | 24,092,287,378.27 | 24.09 billion | 174 |
Insight
Within the 5-year window for award PIID 89233218CNA000001, obligations are fully concentrated in the Department of Energy, with $24.09 billion obligated across 174 awards. This indicates the award activity is entirely attributable to a single agency and reflects a high degree of agency-level concentration. No distribution across other agencies is present in the provided data.
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 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 |
|---|---|---|---|---|
| TRIAD NATIONAL SECURITY, LLC | 804U5 | 24,092,287,378.27 | 24.09 billion | 174 |
Insight
Obligations for PIID 89233218CNA000001 over the 5-year window are fully concentrated with TRIAD NATIONAL SECURITY, LLC (CAGE 804U5), which accounts for $24.09 billion across 174 awards. This indicates a highly concentrated vendor profile with no other vendors represented in the provided data. The award activity suggests repeated obligation to a single contractor rather than a distributed 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 = '89233218CNA000001'
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 | 24,092,287,378.27 | 24.09 billion | 174 |
Insight
Obligations for this award are fully concentrated in NAICS 561210, Facilities Support Services, with $24.09 billion obligated across 174 awards in the 5-year window. This indicates a strong specialization in facilities support contracting rather than a diversified mix of industry categories. The concentration in a single NAICS code suggests this award is primarily associated with recurring, mission-support services.
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 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 | 24,092,287,378.27 | 24.09 billion | 174 |
Insight
Obligations for PIID 89233218CNA000001 are concentrated in PSC M1JZ, Operation of Miscellaneous Buildings, with $24.09 billion obligated across 174 awards over the 5-year window. This indicates a strong focus on building operations within the award portfolio, with obligations highly concentrated in a single PSC category. No other PSC categories are provided here for comparison, so broader distributional assessment is limited.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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 consistently high across the five-year window, ranging from $3.50 billion to $5.88 billion annually. After a dip in 2022, annual obligated amounts increased in 2023, remained near $4.9 billion in 2024, and reached the period high in 2025. Award volume also rose over time from 28 awards in 2021 to 39 in 2025, indicating a relatively stable but slightly increasing distribution of activity.
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.