Federal Contractor

U.S. MARINE MANAGEMENT, INCORPORATED Federal Contract Obligations (Last 5 Years)

Federal procurement profile for U.S. MARINE MANAGEMENT, INCORPORATED (CAGE 1XDZ5, UEI ULJ3VFQNYKQ4) covering the last five years of contract obligations and award activity.

U.S. MARINE MANAGEMENT, INCORPORATED received 356 award actions totaling $988.60 million over the last five years, with an average action value of $2.78 million. Most obligations came from the Department of the Navy and were concentrated in Deep Sea Freight Transportation, with smaller activity under the Department of the Army in Facilities Support Services.

Generated at 03/21/2026

Analysis period: Last 5 years

Amounts reflect obligated federal procurement records in the selected five-year window and may not include every possible award action detail.

CAGE Code
1XDZ5
UEI
ULJ3VFQNYKQ4
Total Obligated
988.60 million
988,603,392.62
Award Actions
356
Average Action Value
2,776,975.82

About U.S. MARINE MANAGEMENT, INCORPORATED federal contract activity

U.S. MARINE MANAGEMENT, INCORPORATED (CAGE 1XDZ5, UEI ULJ3VFQNYKQ4) recorded 356 FPDS awards totaling 988.60 million over the last 5 years, with an average award value of 2.78 million. The profile is heavily concentrated in a small number of awards tied to maritime logistics and support activities.

Agency mix and customer concentration

The DEPT OF THE NAVY dominates the vendor’s federal spend profile, accounting for 943.50 million across 305 awards, or the large majority of total obligations. The DEPT OF THE ARMY is a secondary customer with 45.10 million across 51 awards, indicating a much smaller but still material relationship outside the Navy.

Industry profile based on NAICS activity

Award activity is concentrated in two NAICS codes. DEEP SEA FREIGHT TRANSPORTATION (483111) matches the core of the vendor’s federal business, representing 943.50 million and 305 awards, while FACILITIES SUPPORT SERVICES (561210) accounts for 45.10 million and 51 awards.

Annual contract trend over the analysis window

Annual obligations remained above 175 million in every year of the analysis window, ranging from 175.59 million in 2024 to 213.63 million in 2022. The pattern shows some year-to-year movement, but no sharp contraction, with 2025 at 199.05 million across 66 awards after 2024’s lower total and 2022’s peak.

How to interpret this page

This summary is based on FPDS award records associated with CAGE 1XDZ5 and UEI ULJ3VFQNYKQ4 for the last 5 years. Totals reflect obligated dollars and award counts as provided in the analysis window; agency and NAICS rankings are limited to the categories shown in the supplied dataset.

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 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
1700 DEPT OF THE NAVY 943,504,801.18 943.50 million 305
2100 DEPT OF THE ARMY 45,098,591.44 45.10 million 51

Insight

Over the last 5 years, U.S. MARINE MANAGEMENT, INCORPORATED’s obligations are highly concentrated in the DEPT OF THE NAVY, which accounts for $943.50 million of the vendor’s $988.60 million total obligated value across 305 awards. The DEPT OF THE ARMY represents a much smaller share, with $45.10 million across 51 awards. This distribution indicates a strong dependency on Navy-related procurement activity, with comparatively limited diversification across other agencies in the period reviewed.

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 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
483111 DEEP SEA FREIGHT TRANSPORTATION 943,504,801.18 943.50 million 305
561210 FACILITIES SUPPORT SERVICES 45,098,591.44 45.10 million 51

Insight

Over the last 5 years, U.S. MARINE MANAGEMENT, INCORPORATED’s obligations are highly concentrated in NAICS 483111, Deep Sea Freight Transportation, which accounts for $943.50 million across 305 awards, or the vast majority of the vendor’s $988.60 million total. NAICS 561210, Facilities Support Services, is a secondary line of business at $45.10 million across 51 awards, representing a much smaller share of obligated dollars. The distribution indicates a primarily maritime freight transportation vendor 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 5 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

Insight

U.S. MARINE MANAGEMENT, INCORPORATED (CAGE 1XDZ5) obligated $988.60 million across 356 awards over the last 5 years, for an average award value of $2.78 million. Annual obligations were relatively stable, ranging from $175.59 million to $213.63 million, with the highest level in 2022 and a lower level in 2024 followed by a rebound in 2025. Award counts also varied moderately, peaking at 90 in 2022 and remaining in the mid-60s to low-70s in other years, indicating a fairly even distribution of activity 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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.