Federal Contractor

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

Federal procurement profile for VT HALTER MARINE, INC. (CAGE 3BJ86, UEI MDQKF8LKF232) covering obligations and awards over the last 10 years.

VT HALTER MARINE, INC. recorded 280 federal award actions with total obligations of $2,532,942,109.73 over the last 10 years, for an average action value of $9,046,221.82. Most activity came from the Department of the Navy, with smaller obligations from the U.S. Coast Guard, NOAA, NASA, and the Department of the Army.

Generated at 03/21/2026

Analysis period: Last 10 years

Totals reflect the provided 10-year analysis window and may include negative obligation adjustments in individual years or agencies.

CAGE Code
3BJ86
UEI
MDQKF8LKF232
Total Obligated
2.53 billion
2,532,942,109.73
Award Actions
280
Average Action Value
9,046,221.82

About VT HALTER MARINE, INC. federal contract activity

VT HALTER MARINE, INC. (CAGE 3BJ86, UEI MDQKF8LKF232) recorded 2.53 billion in obligations across 280 awards over the last 10 years, with an average award value of 9.05 million. The profile is heavily concentrated in a small number of awards, consistent with large shipbuilding contract activity rather than broad transactional volume.

Agency mix and customer concentration

The DEPT OF THE NAVY dominates the vendor’s federal business, accounting for 2.52 billion of obligations and 241 awards, or essentially the full observed portfolio. The remaining activity is comparatively limited and spread across the U.S. Coast Guard, NOAA, NASA, and a single negative-obligation entry at the DEPT OF THE ARMY, indicating agency mix is highly concentrated and not diversified.

Industry profile based on NAICS activity

Contracting is overwhelmingly associated with NAICS 336611, Ship Building and Repairing, which represents 2.53 billion across 266 awards. NAICS 336612, Boat Building, is a minor secondary line with 3.18 million across 14 awards, showing that the vendor’s federal work is almost entirely in ship construction and repair.

Annual contract trend over the analysis window

Annual obligations are volatile and tied to large award timing. The largest years in the provided window are 2021 at 788.86 million and 2025 at 631.01 million, while 2024 shows a negative net obligation of 69.24 million, which may reflect deobligations or contract adjustments.

How to interpret this page

This summary uses FPDS award data for the last 10 years and aggregates obligations, award counts, agency distribution, NAICS distribution, and annual totals for vendor 3BJ86/MDQKF8LKF232. Negative obligations are retained as reported in the source data and can indicate downward adjustments rather than new spending.

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 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,518,672,771.82 2.52 billion 241
7008 U.S. COAST GUARD 9,448,368.77 9.45 million 11
1330 NATIONAL OCEANIC AND ATMOSPHERIC ADMINISTRATION 4,159,774.27 4.16 million 20
8000 NATIONAL AERONAUTICS AND SPACE ADMINISTRATION 682,832.00 682.83 thousand 7
2100 DEPT OF THE ARMY -21,637.13 -21.64 thousand 1

Insight

Over the last 10 years, VT HALTER MARINE, INC. has received 2.53 billion across 280 awards, with obligations highly concentrated in the DEPT OF THE NAVY. The Navy accounts for 2.52 billion and 241 awards, or nearly all of the vendor’s obligated value in this period. Other agencies represent a small share of activity: the U.S. Coast Guard, NOAA, and NASA together account for less than 15 million, while the DEPT OF THE ARMY reflects a minor negative obligation.

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 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
336611 SHIP BUILDING AND REPAIRING 2,529,757,732.73 2.53 billion 266
336612 BOAT BUILDING 3,184,377.00 3.18 million 14

Insight

Over the last 10 years, VT HALTER MARINE, INC. (CAGE 3BJ86) shows extreme NAICS concentration in 336611, SHIP BUILDING AND REPAIRING, which accounts for $2.53 billion across 266 awards and represents essentially all obligated dollars. NAICS 336612, BOAT BUILDING, is a minor secondary area at $3.18 million across 14 awards, indicating limited diversification outside ship building and repair. Overall, the vendor’s award profile is overwhelmingly concentrated in a single maritime NAICS.

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 10 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
2020 73,664,137.73 73.66 million 38
2019 883,166,450.04 883.17 million 28
2018 92,083,620.95 92.08 million 19
2017 9,374,690.96 9.37 million 23
2016 1,182,878.00 1.18 million 1

Insight

VT HALTER MARINE, INC. (CAGE 3BJ86) shows a highly concentrated obligation profile over the last 10 years, with 2.53 billion obligated across 280 awards and an average award value of 9.05 million. Funding is unevenly distributed, with major spikes in 2019 (883.17 million), 2021 (788.86 million), and 2025 (631.01 million), which together account for most of the total obligation. Annual award counts remain relatively moderate and do not vary proportionally with dollars obligated, indicating that a small number of high-value actions likely drive the vendor’s overall volume. The negative obligation in 2024 (-69.24 million) suggests downward adjustment or de-obligation activity in that 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.