Federal Contractor

FEDEX SUPPLY CHAIN DISTRIBUTION SYSTEM, INC. Federal Contract Obligations (Last 5 Years)

Federal procurement summary for FEDEX SUPPLY CHAIN DISTRIBUTION SYSTEM, INC. (CAGE 3DSW7, UEI Q9PFF5JU9TR4) covering the last five years of contract obligations and awards.

FEDEX SUPPLY CHAIN DISTRIBUTION SYSTEM, INC. recorded 225 award actions with total obligations of 1.59 billion and an average action value of 7.07 million over the last five years. Activity is overwhelmingly concentrated at the Department of Veterans Affairs, with smaller obligations from Federal Prison Industries, the Bureau of Prisons, the Bureau of Indian Affairs, and U.S. Immigration and Customs Enforcement.

Generated at 03/21/2026

Analysis period: Last 5 years

All figures reflect the provided five-year analysis window and are organized by obligated dollars, award counts, agency, and NAICS 561499.

CAGE Code
3DSW7
UEI
Q9PFF5JU9TR4
Total Obligated
1.59 billion
1,591,228,217.55
Award Actions
225
Average Action Value
7,072,125.41

About FEDEX SUPPLY CHAIN DISTRIBUTION SYSTEM, INC. federal contract activity

FEDEX SUPPLY CHAIN DISTRIBUTION SYSTEM, INC. (CAGE 3DSW7, UEI Q9PFF5JU9TR4) recorded 225 FPDS awards totaling $1.59 billion over the last 5 years, for an average award value of $7.07 million. The funding profile is highly concentrated, with one primary customer accounting for nearly all obligated dollars in the period.

Agency mix and customer concentration

The VETERANS AFFAIRS, DEPARTMENT OF dominates the vendor’s federal footprint, with $1.59 billion across 206 awards, representing essentially the entire obligation base. The remaining agencies are small secondary customers, led by FEDERAL PRISON INDUSTRIES, INC., FEDERAL PRISON SYSTEM / BUREAU OF PRISONS, BUREAU OF INDIAN AFFAIRS, and U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT, each contributing only marginal amounts.

Industry profile based on NAICS activity

All recorded obligations map to NAICS 561499, ALL OTHER BUSINESS SUPPORT SERVICES, indicating a fully concentrated NAICS profile in this analysis window. That classification aligns with a services-based procurement pattern rather than a diversified product or multi-industry award mix.

Annual contract trend over the analysis window

Annual obligations increased from $200.55 million in 2021 to a peak of $410.12 million in 2025, with a brief mid-period dip in 2022 followed by renewed growth in 2023 and 2024. Award volume moved between 25 and 55 awards per year, suggesting that year-to-year obligation changes were driven more by award size and timing than by large swings in contract count.

How to interpret this page

This summary is based on FPDS obligations associated with the vendor’s CAGE code 3DSW7 and UEI Q9PFF5JU9TR4 during the last 5 years. Totals, counts, and averages reflect the supplied analysis window and are presented as recorded in the source data without additional normalization or inference.

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 = '3DSW7'
        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
3600 VETERANS AFFAIRS, DEPARTMENT OF 1,590,720,795.09 1.59 billion 206
1542 FEDERAL PRISON INDUSTRIES, INC. 222,500.00 222.50 thousand 5
1540 FEDERAL PRISON SYSTEM / BUREAU OF PRISONS 182,058.78 182.06 thousand 5
1450 BUREAU OF INDIAN AFFAIRS 88,770.88 88.77 thousand 5
7012 U.S. IMMIGRATION AND CUSTOMS ENFORCEMENT 14,092.80 14.09 thousand 2
2100 DEPT OF THE ARMY 0.00 0.00 2

Insight

Over the last 5 years, FEDEX SUPPLY CHAIN DISTRIBUTION SYSTEM, INC. (CAGE 3DSW7) received $1.59 billion across 225 awards, with obligations heavily concentrated in the Department of Veterans Affairs. VA accounts for $1.59 billion and 206 awards, representing nearly all vendor obligations in the period. All other agencies combined obligated less than $0.5 million across 19 awards, indicating a highly concentrated customer base with limited interagency diversification.

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 = '3DSW7'
        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
561499 ALL OTHER BUSINESS SUPPORT SERVICES 1,591,228,217.55 1.59 billion 225

Insight

Over the last 5 years, FEDEX SUPPLY CHAIN DISTRIBUTION SYSTEM, INC. received 1.59 billion across 225 awards, all under NAICS 561499, indicating complete concentration in a single procurement category. This pattern suggests the vendor’s federal obligations are highly specialized and not diversified across multiple NAICS sectors. The average award value of about 7.07 million indicates a mix of moderate- to large-dollar actions within that sole NAICS code.

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 = '3DSW7'
        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 410,120,776.65 410.12 million 50
2024 352,952,605.41 352.95 million 44
2023 340,182,357.66 340.18 million 51
2022 287,420,815.87 287.42 million 55
2021 200,551,661.96 200.55 million 25

Insight

Over the last 5 years, FEDEX SUPPLY CHAIN DISTRIBUTION SYSTEM, INC. received 1.59 billion in obligated dollars across 225 awards, averaging 7.07 million per award. Annual obligations increased each year from 200.55 million in 2021 to 410.12 million in 2025, indicating a sustained upward funding trend. Award counts were relatively steady from 2022 through 2025, ranging from 44 to 55 per year, with 2021 notably lower at 25 awards.

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.