Federal procurement records show PATRIOT CONTRACT SERVICES, LLC concentrated almost all of its obligated value in NAICS 483111, Deep Sea Freight Transportation. The largest share of obligations came from the Department of the Navy, followed by the Maritime Administration, with a small amount from USTRANSCOM.
Federal Contractor
PATRIOT CONTRACT SERVICES, LLC Federal Contract Obligations (Last 10 Years)
PATRIOT CONTRACT SERVICES, LLC (CAGE 1EQ81, UEI S9L9DZ8RBNL6) has received $2.61 billion across 4,053 federal award actions in the last 10 years.
Annual obligations in the current 5-year window range from $251.31 million in 2021 to $449.83 million in 2024, with $328.48 million recorded in 2025.
About PATRIOT CONTRACT SERVICES, LLC federal contract activity
PATRIOT CONTRACT SERVICES, LLC (CAGE 1EQ81, UEI S9L9DZ8RBNL6) recorded 4,053 FPDS awards totaling $2.61 billion over the last 10 years, with an average award value of $645,028.87. The award base is highly concentrated in a single transportation-related NAICS, indicating a specialized federal contracting profile rather than a diversified portfolio.
Agency mix and customer concentration
Obligations are dominated by the Department of the Navy, which accounts for $2.00 billion across 586 awards, or the large majority of observed spend. The Maritime Administration is the second-largest customer by volume with $612.00 million across 3,465 awards, while USTRANSCOM contributes only a minimal amount at $10,000 across 2 awards. This mix suggests the vendor’s activity is primarily tied to maritime and naval procurement channels.
Industry profile based on NAICS activity
All observed obligations fall under NAICS 483111, Deep Sea Freight Transportation, which represents the full $2.61 billion and all 4,053 awards in the analysis window. That concentration indicates the vendor’s federal work is narrowly aligned to ocean-going freight transportation services. No additional NAICS diversification is visible in the provided data.
Annual contract trend over the analysis window
Annual obligations in the most recent five years show a strong upward shift from $251.31 million in 2021 to a peak of $449.83 million in 2024, before moderating to $328.48 million in 2025. Award counts remain elevated throughout the period, ranging from 356 to 875, with 2025 posting the highest count in the provided trend series. The pattern is consistent with sustained high-volume federal transportation activity rather than isolated large awards alone.
How to interpret this page
This summary is based solely on the provided FPDS Query aggregates for the last 10 years, including total obligated dollars, award counts, agency concentration, NAICS distribution, and annual trend data. Values are reported as supplied and interpreted at a high level without inferring contract type, vehicle structure, or unprovided performance details. Where the data show full concentration in a single NAICS, the text reflects that directly without extrapolation.
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 = '1EQ81'
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 |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 2,002,289,159.33 | 2.00 billion | 586 |
| 6938 | MARITIME ADMINISTRATION | 612,002,869.82 | 612.00 million | 3,465 |
| 9776 | USTRANSCOM | 10,000.00 | 10.00 thousand | 2 |
Insight
Over the last 10 years, PATRIOT CONTRACT SERVICES, LLC has received $2.61 billion across 4,053 awards, with obligations highly concentrated in the Department of the Navy and the Maritime Administration. The Department of the Navy accounts for $2.00 billion, or about 77% of total obligated value, despite only 586 awards, indicating larger average award sizes. The Maritime Administration represents $612.0 million across 3,465 awards, showing a much higher award count but lower dollar concentration. USTRANSCOM is immaterial at $10,000 across 2 awards.
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 = '1EQ81'
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 |
|---|---|---|---|---|
| 483111 | DEEP SEA FREIGHT TRANSPORTATION | 2,614,302,029.15 | 2.61 billion | 4,053 |
Insight
Over the last 10 years, PATRIOT CONTRACT SERVICES, LLC’s obligated dollars are fully concentrated in NAICS 483111, Deep Sea Freight Transportation. This NAICS accounts for the entire $2.61 billion in obligations and all 4,053 awards, indicating a highly concentrated procurement profile with no observed diversification across other NAICS codes in this period. The average award value across the portfolio is approximately $645,029, suggesting a large volume of relatively moderate-sized actions within a single transportation sector.
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 = '1EQ81'
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 | 328,482,766.59 | 328.48 million | 875 |
| 2024 | 449,825,408.76 | 449.83 million | 554 |
| 2023 | 361,386,518.40 | 361.39 million | 509 |
| 2022 | 343,566,080.69 | 343.57 million | 356 |
| 2021 | 251,307,195.60 | 251.31 million | 430 |
| 2020 | 222,915,807.04 | 222.92 million | 370 |
| 2019 | 246,177,142.84 | 246.18 million | 327 |
| 2018 | 158,699,958.15 | 158.70 million | 339 |
| 2017 | 251,918,900.82 | 251.92 million | 291 |
| 2016 | 22,250.26 | 22.25 thousand | 2 |
Insight
Over the last 10 years, PATRIOT CONTRACT SERVICES, LLC (CAGE 1EQ81) recorded $2.61 billion across 4,053 awards, with annual obligations concentrated in the most recent five years. Funding peaked in 2024 at $449.83 million, followed by $361.39 million in 2023 and $343.57 million in 2022, while 2025 has already reached $328.48 million across 875 awards. Earlier years were materially lower, including $158.70 million in 2018 and only $22.25 thousand in 2016, indicating a pronounced upward shift in obligation volume over the 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 10 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.