Federal procurement records for PATRIOT TEAM show activity concentrated in USTRANSCOM awards and primarily in NAICS 481211, nonscheduled chartered passenger air transportation. The 10-year record totals $5,687,705,267.51 in obligations across 8,219 actions, with annual obligations peaking in 2022 and 2023 and turning negative in 2025 year-to-date.
Federal Contractor
PATRIOT TEAM Federal Contract Obligations (Last 10 Years)
PATRIOT TEAM (CAGE 6G2V5, UEI XL2KACMKBJZ3) has 8,219 federal award actions and $5.69 billion obligated over the last 10 years, with USTRANSCOM as the sole listed top agency.
Annual totals reflect obligations recorded in FPDS for the selected 10-year window and may include deobligations, which can produce negative values.
About PATRIOT TEAM federal contract activity
PATRIOT TEAM, identified by CAGE 6G2V5 and UEI XL2KACMKBJZ3, recorded $5.69 billion in obligated contract value across 8,219 awards over the last 10 years. The average award value was $692,019.13, indicating a high-volume procurement profile dominated by repeated transactional activity rather than a small number of large awards.
Agency mix and customer concentration
All observed obligation for PATRIOT TEAM is concentrated within USTRANSCOM, which accounts for the full $5.69 billion and all 8,219 awards in the analysis window. This level of single-agency concentration indicates a highly focused customer base and limited diversification across federal buyers.
Industry profile based on NAICS activity
The vendor’s obligations are overwhelmingly associated with NAICS 481211, Nonscheduled Chartered Passenger Air Transportation, which represents essentially the full contract value and 8,198 awards. NAICS 481212, Nonscheduled Chartered Freight Air Transportation, appears only marginally and is negative in net obligations, suggesting small downward adjustments, deobligations, or closeout activity rather than a meaningful second revenue stream.
Annual contract trend over the analysis window
Annual obligations accelerated sharply beginning in 2021, rising from $542.44 million to more than $1.04 billion in 2022 and $1.00 billion in 2023, before moderating to $349.00 million in 2024. The 2025 figure is negative at -$26.06 million, which likely reflects deobligations or contract corrections within a partial year rather than new business generation.
How to interpret this page
This summary uses FPDS-observed obligations over the last 10 years and reflects the provided totals, award counts, and classification breakdowns for the vendor’s CAGE and UEI. Agency, NAICS, and annual trend statements are based only on the supplied aggregated metrics; negative values are treated as recorded net obligations and may reflect adjustments, cancellations, or closeout actions in the source data.
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 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 |
|---|---|---|---|---|
| 9776 | USTRANSCOM | 5,687,705,267.51 | 5.69 billion | 8,219 |
Insight
Over the last 10 years, PATRIOT TEAM’s federal obligations are entirely concentrated with USTRANSCOM, which accounts for the full $5.69 billion in obligated value and all 8,219 awards. This indicates a highly concentrated customer base with no observed agency diversification in the provided period. The average award value across the window is approximately $692,019, suggesting a large volume of relatively moderate-value awards within a single 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 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 |
|---|---|---|---|---|
| 481211 | NONSCHEDULED CHARTERED PASSENGER AIR TRANSPORTATION | 5,689,416,913.10 | 5.69 billion | 8,198 |
| 481212 | NONSCHEDULED CHARTERED FREIGHT AIR TRANSPORTATION | -1,711,645.59 | -1.71 million | 21 |
Insight
Over the last 10 years, PATRIOT TEAM’s obligations are overwhelmingly concentrated in NAICS 481211, Nonscheduled Chartered Passenger Air Transportation, which accounts for 8,198 of 8,219 awards and nearly all recorded obligated dollars. NAICS 481212, Nonscheduled Chartered Freight Air Transportation, represents only 21 awards and a net negative obligation of $1.71 million, indicating minimal activity and a small downward adjustment relative to the vendor’s overall volume. This profile suggests a highly specialized procurement footprint centered on passenger air transport 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 = '6G2V5'
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 | -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 |
| 2020 | 660,969,547.28 | 660.97 million | 1,005 |
| 2019 | 606,585,188.97 | 606.59 million | 931 |
| 2018 | 869,050,916.86 | 869.05 million | 1,049 |
| 2017 | 638,726,038.30 | 638.73 million | 1,009 |
Insight
PATRIOT TEAM shows sustained contract activity over the last 10 years, with 5.69 billion obligated across 8,219 awards, averaging 692,019.13 per award. Annual obligations were concentrated in 2022 and 2023, which together account for about 36% of total obligated dollars, after a similar but lower level in 2018. Award volume generally ranged from roughly 900 to 1,300 awards per year from 2017 through 2024, then fell sharply in 2025 with 59 awards and -26.06 million obligated, indicating a year-to-date reduction and net deobligation 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.