Federal Contractor

VT HALTER MARINE, INC. Federal Contract Obligations (Last 5 Years)

VT HALTER MARINE, INC. (CAGE 3BJ86, UEI MDQKF8LKF232) shows 1.47 billion in obligated federal awards across 171 actions over the last 5 years.

VT HALTER MARINE, INC. received nearly all of its federal obligation volume from the Department of the Navy, totaling 1.47 billion across 171 awards. Activity is concentrated in NAICS 336611, Ship Building and Repairing, with a smaller share in NAICS 336612, Boat Building.

Generated at 03/21/2026

Analysis period: Last 5 years

Annual obligations vary sharply by year, including a 2025 total of 631.01 million, a 2024 negative adjustment of 69.24 million, and a 2021 high of 788.86 million.

CAGE Code
3BJ86
UEI
MDQKF8LKF232
Total Obligated
1.47 billion
1,473,470,332.05
Award Actions
171
Average Action Value
8,616,785.56

About VT HALTER MARINE, INC. federal contract activity

VT HALTER MARINE, INC. (CAGE 3BJ86, UEI MDQKF8LKF232) recorded 171 awards totaling $1.47 billion over the last 5 years, with an average award value of $8.62 million. The vendor’s procurement profile is dominated by shipbuilding and marine construction work, indicating a concentrated federal customer and industrial base.

Agency mix and customer concentration

All identified obligations came from the Department of the Navy, which accounted for the full $1.47 billion and all 171 awards. This indicates a highly concentrated agency relationship with no material diversification across civilian or other defense buyers in the analyzed period.

Industry profile based on NAICS activity

NAICS 336611, Ship Building and Repairing, represents the core of the vendor’s federal business at $1.47 billion across 157 awards. NAICS 336612, Boat Building, is a smaller secondary line at $3.18 million across 14 awards, showing a narrow but related scope of maritime production activity.

Annual contract trend over the analysis window

Annual obligations were highly uneven, led by $788.86 million in 2021 and $631.01 million in 2025. 2024 shows a negative net obligation of $69.24 million, which suggests deobligations or contract adjustments rather than new demand decline alone; 2022 and 2023 were comparatively modest at $45.71 million and $77.13 million.

How to interpret this page

This summary uses FPDS award data for the last 5 years and aggregates obligations, award counts, and NAICS/agency distributions for the vendor’s CAGE and UEI. Negative annual totals are presented as recorded in the source data and may reflect deobligations, modifications, or other contract accounting actions.

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 = '3BJ86'
        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 1,473,470,332.05 1.47 billion 171

Insight

Over the last 5 years, VT HALTER MARINE, INC. (CAGE 3BJ86) received all identified obligations from the DEPT OF THE NAVY, totaling $1.47 billion across 171 awards. This indicates complete agency concentration, with no other top-agency obligations represented in the provided data. The average award value of about $8.62 million suggests a mix of sizeable procurement actions under a single agency customer.

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 = '3BJ86'
        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
336611 SHIP BUILDING AND REPAIRING 1,470,285,955.05 1.47 billion 157
336612 BOAT BUILDING 3,184,377.00 3.18 million 14

Insight

Over the last 5 years, VT HALTER MARINE, INC. (CAGE 3BJ86) received $1.47 billion across 171 awards, with obligations heavily concentrated in NAICS 336611, Ship Building and Repairing. That NAICS accounts for $1.47 billion and 157 awards, representing nearly all obligated dollars in the period. NAICS 336612, Boat Building, is a minor secondary area at $3.18 million across 14 awards, indicating a narrow industrial profile dominated by shipbuilding and repair work.

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 = '3BJ86'
        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 631,013,940.65 631.01 million 41
2024 -69,243,585.00 -69.24 million 34
2023 77,131,450.34 77.13 million 32
2022 45,705,798.47 45.71 million 38
2021 788,862,727.59 788.86 million 26

Insight

VT HALTER MARINE, INC. (CAGE 3BJ86) shows highly uneven obligations over the last 5 years, with total obligations of $1.47 billion across 171 awards and an average award value of $8.62 million. Funding is concentrated in 2021 and 2025, which account for the largest annual obligations at $788.86 million and $631.01 million, respectively. 2024 records a negative net obligation of $69.24 million, indicating a significant downward adjustment or deobligation in that year, while 2022 and 2023 remain comparatively modest at $45.71 million and $77.13 million. Award counts are more evenly distributed than dollars, ranging from 26 to 41 awards per year, suggesting a small number of high-value actions drive most of the obligation volume.

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.