Federal Contractor

TRIAD NATIONAL SECURITY, LLC Federal Contract Obligations (Last 10 Years)

TRIAD NATIONAL SECURITY, LLC is a federal vendor with 241 recorded award actions and 31.74 billion in obligated value over the last 10 years.

Most of TRIAD NATIONAL SECURITY, LLC's federal obligations are with the Department of Energy, which accounts for nearly all recorded spending in this period. Award activity is concentrated in NAICS 561210, Facilities Support Services, with annual obligations ranging from 3.50 billion in 2022 to 5.88 billion in 2025.

Generated at 03/21/2026

Analysis period: Last 10 years

Figures reflect the last 10 years of FPDS-observable award activity for CAGE 804U5 and UEI X7WUS5LRBQU3, and may include zero-dollar actions.

CAGE Code
804U5
UEI
X7WUS5LRBQU3
Total Obligated
31.74 billion
31,739,766,201.89
Award Actions
241
Average Action Value
131,700,274.69

About TRIAD NATIONAL SECURITY, LLC federal contract activity

TRIAD NATIONAL SECURITY, LLC (CAGE 804U5, UEI X7WUS5LRBQU3) recorded 241 awards totaling $31.74 billion over the last 10 years, with an average award value of $131.70 million. The profile is highly concentrated, with essentially all obligated value flowing through a single civilian department rather than a broad multi-agency customer base.

Agency mix and customer concentration

The Department of Energy dominates the vendor's federal business, accounting for $31.74 billion across 234 awards. Federal Acquisition Service contributed a negligible $16.40 thousand across 5 awards, while the Department of the Navy shows 2 awards with no obligated value in the reported period, indicating limited diversification outside DOE.

Industry profile based on NAICS activity

NAICS 561210, Facilities Support Services, represents the vendor's core activity and accounts for $31.74 billion across 234 awards. The only other obligated NAICS listed is 811111, General Automotive Repair, at $16.40 thousand across 5 awards; 511210 appears in the award set but with no obligated value.

Annual contract trend over the analysis window

Annual obligations remained in the multi-billion-dollar range from 2021 through 2025, ranging from $3.50 billion to $5.88 billion. The peak year in the provided window is 2025 at $5.88 billion, followed by 2023 at $5.20 billion, showing sustained high-value activity with no sharp collapse in later years.

How to interpret this page

This summary uses FPDS-observed obligations tied to TRIAD NATIONAL SECURITY, LLC by CAGE code 804U5 and UEI X7WUS5LRBQU3 over the last 10 years. Totals, counts, and category rollups reflect only the values provided in the analysis window and are not adjusted for inflation, scope changes, or award modifications beyond the reported obligations.

Top Agencies

SELECT
    agency_id,
    agency_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
        anyHeavy(content__award__purchaserInformation__contractingOfficeAgencyID__name) AS agency_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '804U5'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
8900 ENERGY, DEPARTMENT OF 31,739,749,798.38 31.74 billion 234
4732 FEDERAL ACQUISITION SERVICE 16,403.51 16.40 thousand 5
1700 DEPT OF THE NAVY 0.00 0.00 2

Insight

Over the last 10 years, TRIAD NATIONAL SECURITY, LLC’s obligations are overwhelmingly concentrated in the Department of Energy, which accounts for $31.74 billion of $31.74 billion total obligated and 234 of 241 awards. Federal Acquisition Service activity is minimal at $16.40 thousand across 5 awards, and the Department of the Navy shows 2 awards with no obligated dollars. This pattern indicates a highly concentrated customer base with essentially all spend tied to a single agency.

Top NAICS

SELECT
    naics_code,
    naics_name,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
        anyHeavy(content__award__productOrServiceInformation__principalNAICSCode__description) AS naics_name,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '804U5'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
561210 FACILITIES SUPPORT SERVICES 31,739,749,798.38 31.74 billion 234
811111 GENERAL AUTOMOTIVE REPAIR 16,403.51 16.40 thousand 5
511210 SOFTWARE PUBLISHERS 0.00 0.00 2

Insight

Over the last 10 years, TRIAD NATIONAL SECURITY, LLC’s obligations are overwhelmingly concentrated in NAICS 561210, Facilities Support Services, which accounts for $31.74 billion across 234 awards and essentially all of the vendor’s $31.74 billion total. The remaining activity is immaterial by value: NAICS 811111, General Automotive Repair, totals $16.40 thousand across 5 awards, and NAICS 511210, Software Publishers, records 2 awards with no obligated dollars. This pattern indicates a highly concentrated award profile with negligible diversification outside the primary facilities support function.

Annual Trend

SELECT
    year,
    total_obligated,
    award_count,
    formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
    SELECT
        toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
        sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
        count() AS award_count
    FROM fpds.data
    WHERE
        contract_type = 1
        AND content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode = '804U5'
        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 DESC
Year Total Obligated Readable Award Actions
2025 5,883,604,863.94 5.88 billion 39
2024 4,882,675,607.72 4.88 billion 35
2023 5,202,056,772.39 5.20 billion 36
2022 3,496,090,392.03 3.50 billion 39
2021 4,627,873,312.08 4.63 billion 31
2020 3,085,889,947.88 3.09 billion 31
2019 1,153,286,157.67 1.15 billion 18
2018 3,408,289,148.18 3.41 billion 12

Insight

TRIAD NATIONAL SECURITY, LLC (CAGE 804U5) has obligated $31.74 billion across 241 awards over the last 10 years, with average award value of $131.7 million. Obligation volume is concentrated in the most recent five years, especially 2021 through 2025, which account for the majority of annual dollars; 2025 is the peak year at $5.88 billion across 39 awards. Annual obligations are otherwise uneven, with a low point in 2019 at $1.15 billion, indicating material year-to-year variability rather than a steady linear trend. Award counts are comparatively stable in the 31-39 range in 2020-2025, suggesting higher volatility in dollar value than in transaction frequency.

Use FPDS Query for deeper contractor analysis

Explore federal procurement data with custom SQL, fast filtering, and deeper contractor analysis across buying agencies, NAICS, 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.