Federal Contractor

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

ASHBRITT, INC. (CAGE 00Z46, UEI YH8JGLSMAQX3) recorded $2.10 billion in obligations across 260 award actions in the last 10 years.

ASHBRITT, INC. is an Army-focused federal vendor with nearly all obligations concentrated in NAICS 562119, Other Waste Collection. The recent award history is weighted to 2025 and 2024, with a smaller set of earlier actions including a negative obligation year in 2019.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the last 10 years of readable FPDS obligations and award counts, and annual values may include deobligations.

CAGE Code
00Z46
UEI
YH8JGLSMAQX3
Total Obligated
2.10 billion
2,097,248,468.33
Award Actions
260
Average Action Value
8,066,340.26

About ASHBRITT, INC. federal contract activity

ASHBRITT, INC. (CAGE 00Z46, UEI YH8JGLSMAQX3) recorded $2.10 billion in obligated value across 260 FPDS awards over the last 10 years, for an average award value of $8.07 million. The award history is heavily concentrated in a small number of contracts, indicating a vendor profile driven by large, recurring obligations rather than broad transaction volume.

Agency mix and customer concentration

The Department of the Army accounts for all identified obligated value in this analysis, totaling $2.10 billion across 260 awards. This indicates a highly concentrated customer base and a procurement relationship dominated by one agency rather than a diversified federal footprint.

Industry profile based on NAICS activity

The vendor’s activity is overwhelmingly aligned to NAICS 562119, Other Waste Collection, which represents $2.09 billion across 257 awards. Smaller amounts appear under NAICS 562111, Solid Waste Collection, and a single minimal award under NAICS 221112, Fossil Fuel Electric Power Generation, suggesting that the core business is waste collection and related services.

Annual contract trend over the analysis window

Obligations rose sharply in 2025 to $1.54 billion across 154 awards after $245.48 million across 47 awards in 2024, showing a significant increase in recent procurement activity. Earlier years are comparatively limited, with $84.10 million in 2018, a negative net obligation of $13.13 million in 2019, and only $52.50 thousand in 2023, which suggests notable year-to-year volatility. The recent surge dominates the 10-year total and is the primary driver of the vendor’s overall funding profile.

How to interpret this page

This summary is based on FPDS obligation data for the last 10 years using the vendor’s CAGE code and UEI. Totals reflect obligated dollars by award, with agency, NAICS, and annual trend views derived from the provided analysis window; negative annual values are preserved as reported and may reflect deobligations or adjustments.

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 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
2100 DEPT OF THE ARMY 2,097,248,468.33 2.10 billion 260

Insight

Over the last 10 years, ASHBRITT, INC. has received 2.10 billion in obligated obligations across 260 awards, for an average award value of about 8.07 million. All reported obligations are concentrated with the Department of the Army, indicating a highly concentrated customer base with no visible spread across other agencies in this dataset. This concentration suggests the vendor’s federal activity in the period has been primarily Army-dependent rather than broadly distributed across the government.

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 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
562119 OTHER WASTE COLLECTION 2,094,895,150.37 2.09 billion 257
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

Over the last 10 years, ASHBRITT, INC. has a highly concentrated NAICS profile: NAICS 562119, Other Waste Collection, accounts for approximately $2.09 billion of the firm’s $2.10 billion in obligated value and 257 of 260 awards. The remaining activity is minimal and limited to NAICS 562111, Solid Waste Collection, at $2.35 million across 2 awards, and a single $2,500 award under NAICS 221112, Fossil Fuel Electric Power Generation. This indicates sustained dependence on a single primary procurement category with only immaterial diversification into adjacent codes.

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 10 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
2019 -13,128,493.09 -13.13 million 6
2018 84,096,869.97 84.10 million 34
2017 239,923,996.13 239.92 million 14

Insight

Over the last 10 years, ASHBRITT, INC. has obligated $2.10 billion across 260 awards, with activity highly concentrated in 2025, which accounts for $1.54 billion and 154 awards. 2024 is a distant second at $245.48 million and 47 awards, while 2023 is negligible at $52.50 thousand, indicating a sharp recent increase in obligation volume. Earlier years are much smaller and more uneven, including 2017 at $239.92 million, 2018 at $84.10 million, and a net negative obligation in 2019 of $13.13 million, suggesting volatility rather than steady annual growth.

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.