Most of this obligation is tied to the DEPT OF THE NAVY, which accounts for $1.67 billion across 549 actions, primarily under NAICS 483111, Deep Sea Freight Transportation. The DEPT OF THE ARMY represents the remaining $45.10 million across 51 actions, mainly under NAICS 561210, Facilities Support Services.
Federal Contractor
U.S. MARINE MANAGEMENT, INCORPORATED Federal Contract Obligations (Last 10 Years)
U.S. MARINE MANAGEMENT, INCORPORATED (CAGE 1XDZ5, UEI ULJ3VFQNYKQ4) has 600 federal award actions totaling $1.71 billion over the last 10 years.
Annual obligations in the provided trend data ranged from $175.59 million in 2024 to $213.63 million in 2022, with 2025 at $199.05 million through the latest available records.
About U.S. MARINE MANAGEMENT, INCORPORATED federal contract activity
U.S. MARINE MANAGEMENT, INCORPORATED (CAGE 1XDZ5, UEI ULJ3VFQNYKQ4) recorded 1.71 billion in FPDS-obligated awards across 600 awards over the last 10 years, for an average award value of 2.86 million. The profile is highly concentrated, with the DEPT OF THE NAVY accounting for nearly all observed obligations.
Agency mix and customer concentration
The agency mix is dominated by the DEPT OF THE NAVY, which represents 1.67 billion across 549 awards, or the clear majority of vendor activity in the period. The only other material customer is the DEPT OF THE ARMY, with 45.10 million across 51 awards, indicating limited diversification outside the Navy.
Industry profile based on NAICS activity
NAICS activity is similarly concentrated. DEEP SEA FREIGHT TRANSPORTATION accounts for 1.67 billion and 549 awards, while FACILITIES SUPPORT SERVICES contributes 45.10 million and 51 awards, matching the agency pattern and suggesting a narrow operating profile tied to maritime transportation and related support work.
Annual contract trend over the analysis window
Recent annual obligations remain in the high-hundreds-of-millions range, with 205.30 million in 2021, 213.63 million in 2022, 195.03 million in 2023, 175.59 million in 2024, and 199.05 million in 2025. Award volume moved in the same general band, peaking at 90 awards in 2022 and remaining elevated at 63 to 72 awards from 2023 through 2025.
How to interpret this page
This summary is based on FPDS award records for the last 10 years and uses obligated dollars, award counts, agency grouping, and NAICS classification as reported in the provided dataset. The figures reflect observed FPDS activity only and should be interpreted as contract obligation trends, not total company revenue or performance across all markets.
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 = '1XDZ5'
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 | 1,669,522,683.19 | 1.67 billion | 549 |
| 2100 | DEPT OF THE ARMY | 45,098,591.44 | 45.10 million | 51 |
Insight
Over the last 10 years, U.S. MARINE MANAGEMENT, INCORPORATED received $1.71 billion across 600 awards, with an average award value of $2.86 million. Obligations are highly concentrated in the DEPT OF THE NAVY, which accounted for $1.67 billion and 549 awards, or roughly 97% of total obligated dollars. The DEPT OF THE ARMY represented a much smaller share at $45.10 million across 51 awards, indicating limited but recurring activity outside the Navy.
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 = '1XDZ5'
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 | 1,669,522,683.19 | 1.67 billion | 549 |
| 561210 | FACILITIES SUPPORT SERVICES | 45,098,591.44 | 45.10 million | 51 |
Insight
Over the last 10 years, U.S. MARINE MANAGEMENT, INCORPORATED’s obligations are highly concentrated in NAICS 483111, Deep Sea Freight Transportation, which accounts for $1.67 billion across 549 awards, or the vast majority of the firm’s $1.71 billion total. NAICS 561210, Facilities Support Services, is a much smaller secondary category at $45.10 million across 51 awards. This distribution indicates a predominantly maritime transportation contracting profile with limited diversification into support 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 = '1XDZ5'
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 | 199,052,036.55 | 199.05 million | 66 |
| 2024 | 175,593,998.35 | 175.59 million | 63 |
| 2023 | 195,031,610.99 | 195.03 million | 72 |
| 2022 | 213,630,201.19 | 213.63 million | 90 |
| 2021 | 205,295,545.54 | 205.30 million | 65 |
| 2020 | 179,809,647.18 | 179.81 million | 85 |
| 2019 | 235,943,766.72 | 235.94 million | 66 |
| 2018 | 167,590,536.05 | 167.59 million | 64 |
| 2017 | 142,673,932.06 | 142.67 million | 29 |
Insight
Over the last 10 years, U.S. MARINE MANAGEMENT, INCORPORATED (CAGE 1XDZ5) received 1.71 billion across 600 awards, averaging about 2.86 million per award. Obligations are relatively steady in the 167.59 million to 235.94 million range for most years, with a peak in 2019 (235.94 million) and sustained higher activity in 2021 through 2025, including 2025 at 199.05 million. Award volume also remains consistently high, generally between 63 and 90 awards per year, indicating broad year-to-year distribution rather than dependence on a single spike year.
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.