Federal Contractor

ASHBRITT, INC. Federal Contract Obligations (Last 5 Years)

ASHBRITT, INC. (CAGE 00Z46, UEI YH8JGLSMAQX3) received 1.79 billion in federal obligations across 206 award actions in the last 5 years.

In the analysis window, ASHBRITT, INC. was awarded almost all of its federal contract value by the Department of the Army, which accounted for 1.79 billion across 206 actions. The company’s obligations were concentrated in NAICS 562119, Other Waste Collection, with smaller awards in Solid Waste Collection and one minor action in Fossil Fuel Electric Power Generation.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual obligations were highest in 2025 at 1.54 billion, followed by 245.48 million in 2024 and 52.50 thousand in 2023.

CAGE Code
00Z46
UEI
YH8JGLSMAQX3
Total Obligated
1.79 billion
1,786,356,095.32
Award Actions
206
Average Action Value
8,671,631.53

About ASHBRITT, INC. federal contract activity

ASHBRITT, INC. (CAGE 00Z46, UEI YH8JGLSMAQX3) recorded $1.79 billion in obligated value across 206 awards over the last 5 years, for an average award value of $8.67 million. The profile is highly concentrated, with nearly all dollars tied to a small number of awards in the period.

Agency mix and customer concentration

The vendor’s award activity is entirely concentrated in the DEPT OF THE ARMY, which accounts for the full $1.79 billion and all 206 awards in the analysis window. This indicates a single-agency dependency rather than a diversified federal customer base.

Industry profile based on NAICS activity

Awarded obligations are overwhelmingly concentrated in NAICS 562119, OTHER WASTE COLLECTION, which represents $1.78 billion across 203 awards. Smaller activity appears in NAICS 562111, SOLID WASTE COLLECTION, at $2.35 million across 2 awards, with a single de minimis award under NAICS 221112, FOSSIL FUEL ELECTRIC POWER GENERATION, at $2,500.

Annual contract trend over the analysis window

Obligations were heavily weighted toward 2025, when the vendor received $1.54 billion across 154 awards. Prior activity fell to $245.48 million across 47 awards in 2024 and only $52.5 thousand across 5 awards in 2023, showing a sharp year-over-year expansion in recent obligations.

How to interpret this page

This summary is based on FPDS award records associated with CAGE 00Z46 and UEI YH8JGLSMAQX3 for the last 5 years. Totals, counts, and averages reflect obligated values only, with agency, NAICS, and annual breakdowns aggregated from the provided dataset.

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 = '00Z46'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
Agency ID Agency Name Total Obligated Readable Award Actions
2100 DEPT OF THE ARMY 1,786,356,095.32 1.79 billion 206

Insight

Over the last 5 years, ASHBRITT, INC. has received $1.79 billion across 206 awards, with an average award value of $8.67 million. All recorded obligations in this period are concentrated with the Department of the Army, indicating a fully concentrated agency profile rather than a distributed federal customer base. This concentration suggests the vendor’s recent federal activity has been driven exclusively by Army procurement.

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 = '00Z46'
        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
)
ORDER BY total_obligated DESC
LIMIT 10
NAICS Code Description Total Obligated Readable Award Actions
562119 OTHER WASTE COLLECTION 1,784,002,777.36 1.78 billion 203
562111 SOLID WASTE COLLECTION 2,350,817.96 2.35 million 2
221112 FOSSIL FUEL ELECTRIC POWER GENERATION 2,500.00 2.50 thousand 1

Insight

ASHBRITT, INC.’s obligations over the last 5 years are highly concentrated in NAICS 562119, Other Waste Collection, which accounts for $1.78 billion across 203 awards and represents nearly all of the vendor’s $1.79 billion total obligated value. NAICS 562111, Solid Waste Collection, is a distant secondary category with $2.35 million across 2 awards, while NAICS 221112, Fossil Fuel Electric Power Generation, is negligible at $2,500 on 1 award. This distribution indicates a narrowly focused contracting profile centered on waste collection services.

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 = '00Z46'
        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 DESC
Year Total Obligated Readable Award Actions
2025 1,540,822,252.60 1.54 billion 154
2024 245,481,342.72 245.48 million 47
2023 52,500.00 52.50 thousand 5

Insight

ASHBRITT, INC. shows a highly concentrated obligation profile over the last 5 years, with $1.79 billion obligated across 206 awards and an average award value of $8.67 million. Activity is heavily weighted to 2025, which accounts for $1.54 billion and 154 awards, or the clear majority of both dollars and actions in the period. 2024 is a distant second at $245.48 million across 47 awards, while 2023 is immaterial at $52.50 thousand across 5 awards, indicating a sharp recent surge in procurement activity.

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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.