Federal Contractor

PATRIOT TEAM Federal Contract Obligations (Last 5 Years)

PATRIOT TEAM (CAGE 6G2V5, UEI XL2KACMKBJZ3) recorded 4,225 federal award actions and $2.91 billion in obligations over the last 5 years, primarily with USTRANSCOM.

PATRIOT TEAM's federal procurement profile is concentrated in USTRANSCOM contracting, with nearly all obligations tied to NAICS 481211, nonscheduled chartered passenger air transportation. Annual obligations peaked in 2022 and 2023, then declined in 2024 and were negative in 2025 to date, while award activity remained broad across 4,225 actions.

Generated at 03/21/2026

Analysis period: Last 5 years

Totals reflect the last 5 years of FPDS activity and may include obligation adjustments; the NAICS total slightly exceeds the overall total because of negative freight-air obligations.

CAGE Code
6G2V5
UEI
XL2KACMKBJZ3
Total Obligated
2.91 billion
2,912,373,576.10
Award Actions
4,225
Average Action Value
689,319.18

About PATRIOT TEAM federal contract activity

PATRIOT TEAM (CAGE 6G2V5, UEI XL2KACMKBJZ3) recorded 4,225 awards totaling $2.91 billion over the last 5 years, with an average award value of $689,319.18. The profile is highly concentrated in a single customer relationship, and the total is driven by a large volume of relatively small awards rather than a few high-dollar actions.

Agency mix and customer concentration

All identified obligations in this window were attributed to USTRANSCOM, which accounted for $2.91 billion across 4,225 awards. This indicates a fully concentrated agency mix with no visible diversification across other federal buyers in the provided data.

Industry profile based on NAICS activity

Award activity is overwhelmingly tied to NAICS 481211, Nonscheduled Chartered Passenger Air Transportation, which represents nearly all recorded obligation value and 4,211 awards. NAICS 481212, Nonscheduled Chartered Freight Air Transportation, appears only marginally and is associated with a small negative obligated total, suggesting limited adjustment or deobligation activity rather than substantive freight contracting.

Annual contract trend over the analysis window

Annual obligations peaked in 2022 at $1.05 billion and remained elevated in 2023 at $1.00 billion, before moderating to $349.00 million in 2024. The 2025 figure is negative at -$26.06 million across 59 awards, indicating net deobligations or reversals in the partial-year data rather than new positive outlays.

How to interpret this page

This summary uses FPDS obligations and award counts for the last 5 years, grouped by vendor, agency, NAICS, and fiscal year. Negative obligations are preserved as reported and may reflect deobligations, modifications, or timing adjustments; percentages are not stated where the source data does not provide a complete comparative base.

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 = '6G2V5'
        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
9776 USTRANSCOM 2,912,373,576.10 2.91 billion 4,225

Insight

Over the last 5 years, PATRIOT TEAM’s obligations are fully concentrated in USTRANSCOM, which accounts for the entire $2.91 billion total and all 4,225 awards. This indicates a single-agency dependency with no visible distribution across other agencies in the provided period. The average award value is approximately $689,319, suggesting a high volume of relatively moderate-sized awards within that agency relationship.

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 = '6G2V5'
        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
481211 NONSCHEDULED CHARTERED PASSENGER AIR TRANSPORTATION 2,914,261,433.13 2.91 billion 4,211
481212 NONSCHEDULED CHARTERED FREIGHT AIR TRANSPORTATION -1,887,857.03 -1.89 million 14

Insight

Over the last 5 years, PATRIOT TEAM’s obligations are overwhelmingly concentrated in NAICS 481211, Nonscheduled Chartered Passenger Air Transportation, which accounts for nearly all reported obligated dollars at $2.91 billion across 4,211 awards. NAICS 481212, Nonscheduled Chartered Freight Air Transportation, represents a minimal and net negative obligation of $1.89 million across 14 awards, indicating no meaningful diversification in obligated spend by NAICS. Overall, the vendor’s award profile is highly concentrated in passenger air transportation with a very large number of relatively small awards.

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 = '6G2V5'
        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 -26,063,937.48 -26.06 million 59
2024 349,003,462.45 349.00 million 767
2023 1,000,832,028.88 1.00 billion 1,295
2022 1,046,158,889.67 1.05 billion 1,205
2021 542,443,132.58 542.44 million 899

Insight

PATRIOT TEAM (CAGE 6G2V5) obligated $2.91 billion across 4,225 awards over the last 5 years, with an average award value of $689.3K. Obligations were concentrated in 2022 and 2023, which together accounted for roughly $2.05 billion, or about 70% of the five-year total. Activity then declined in 2024 to $349.0 million and in 2025 to -$26.1 million across 59 awards, indicating a sharp recent reduction and a net downward trend in the most current period.

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.