This page summarizes federal procurement activity for award number N0002419C2210 under agency ID 9700. Over the last 10 years, the award recorded 118 actions and $1,995,738,356.06 in total obligations.
Award Number
Award Number 9700 / N0002419C2210 Federal Contract Action Summary (Last 10 Years)
Award number N0002419C2210 for agency ID 9700 shows 118 actions over the last 10 years and about $2.00 billion obligated.
Totals reflect the 10-year analysis window and the exact obligated amount of $1,995,738,356.06, with an average action value of $16,913,036.92.
Overview
The award record for N0002419C2210 covers 118 actions within the last 10 years and totals $1,995,738,356.06 in obligated value. The readable total rounds to 2.00 billion, which reflects the same underlying amount. The average action value across the record is $16,913,036.92.
How to use this page
Use this page to review the size and activity level of award N0002419C2210 in the context of agency ID 9700. The figures support quick comparison across awards by showing total obligation, action count, and average action value over the selected period.
Top Agencies
SELECT
content__award__purchaserInformation__contractingOfficeAgencyID AS agency_id,
content__award__purchaserInformation__contractingOfficeAgencyID__name AS agency_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002419C2210'
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,
agency_name
ORDER BY total_obligated DESC
LIMIT 10
| Agency ID | Agency Name | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 1700 | DEPT OF THE NAVY | 1,995,738,356.06 | 2.00 billion | 118 |
Insight
Over the 10-year window, obligations for PIID N0002419C2210 are concentrated entirely within the DEPT OF THE NAVY. The Navy accounts for $1.996 billion across 118 awards, indicating a highly concentrated award profile with no other agencies represented in the provided data. This pattern suggests the contract activity is materially tied to a single agency relationship rather than a distributed interagency portfolio.
Top Vendors
SELECT
vendor_name,
cage_code,
total_obligated,
award_count,
formatReadableQuantity(total_obligated) AS total_obligated_readable
FROM
(
SELECT
content__award__vendor__vendorHeader__vendorName AS vendor_name,
ifNull(content__award__vendor__vendorSiteDetails__entityIdentifiers__cageCode, '') AS cage_code,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002419C2210'
AND content__award__vendor__vendorHeader__vendorName IS NOT NULL
AND content__award__vendor__vendorHeader__vendorName != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
vendor_name,
cage_code
)
ORDER BY total_obligated DESC
LIMIT 10
| Vendor | CAGE Code | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| VT HALTER MARINE, INC. | 3BJ86 | 1,512,304,408.72 | 1.51 billion | 63 |
| BOLLINGER MISSISSIPPI SHIPBUILDING, LLC | 3BJ86 | 483,433,947.34 | 483.43 million | 55 |
Insight
Award obligations for PIID N0002419C2210 are highly concentrated in two vendors over the 10-year window. VT HALTER MARINE, INC. accounts for the majority of obligated value at $1.51 billion across 63 awards, while BOLLINGER MISSISSIPPI SHIPBUILDING, LLC received $483.43 million across 55 awards. The distribution indicates a clear primary vendor with a secondary recipient of materially lower but still substantial funding.
Top NAICS
SELECT
content__award__productOrServiceInformation__principalNAICSCode AS naics_code,
content__award__productOrServiceInformation__principalNAICSCode__description AS naics_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002419C2210'
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,
naics_name
ORDER BY total_obligated DESC
LIMIT 10
| NAICS Code | Description | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 336611 | SHIP BUILDING AND REPAIRING | 1,995,738,356.06 | 2.00 billion | 118 |
Insight
Obligations for this award are fully concentrated in NAICS 336611, Ship Building and Repairing, with $1.996 billion across 118 awards. This indicates the award’s activity is entirely aligned to a single industrial classification, with no diversification across other NAICS codes in the provided data. The volume and value pattern suggest a sustained, high-dollar shipbuilding and repair procurement profile over the 10-year window.
Top PSC Codes
SELECT
content__award__productOrServiceInformation__productOrServiceCode AS psc_code,
content__award__productOrServiceInformation__productOrServiceCode__description AS psc_name,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
count() AS award_count,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002419C2210'
AND content__award__productOrServiceInformation__productOrServiceCode IS NOT NULL
AND content__award__productOrServiceInformation__productOrServiceCode != ''
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) >= toStartOfYear(now()) - INTERVAL 10 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY
psc_code,
psc_name
ORDER BY total_obligated DESC
LIMIT 10
| PSC Code | Description | Total Obligated | Readable | Actions |
|---|---|---|---|---|
| 1925 | SPECIAL SERVICE VESSELS | 1,995,738,356.06 | 2.00 billion | 118 |
Insight
Over the 10-year window for award N0002419C2210 under agency 9700, obligations are fully concentrated in PSC 1925, Special Service Vessels. This PSC accounts for $1.996 billion across 118 awards, indicating a sustained and highly focused procurement pattern rather than a diversified mix of product or service categories.
Annual Trend
SELECT
toYear(parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate)) AS year,
sum(content__award__dollarValues__obligatedAmount) AS total_obligated,
formatReadableQuantity(sum(content__award__dollarValues__obligatedAmount)) AS total_obligated_readable,
count() AS award_count
FROM fpds.data
WHERE
content__award__awardID__awardContractID__agencyID = '9700' AND content__award__awardID__awardContractID__PIID = 'N0002419C2210'
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 ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 2019 | 835,405,317.00 | 835.41 million | 5 |
| 2020 | 27,462,394.25 | 27.46 million | 18 |
| 2021 | 605,285,252.00 | 605.29 million | 12 |
| 2022 | 44,151,445.47 | 44.15 million | 26 |
| 2023 | 8,831,534.34 | 8.83 million | 18 |
| 2024 | -138,972,682.00 | -138.97 million | 21 |
| 2025 | 613,575,095.00 | 613.58 million | 18 |
Insight
Obligations for PIID N0002419C2210 are highly uneven across the 10-year window, with major peaks in 2019 ($835.41 million), 2021 ($605.29 million), and 2025 ($613.58 million). Award volume is more distributed, ranging from 5 awards in 2019 to 26 in 2022, indicating that higher obligation years do not always correspond to the highest award counts. Notably, 2024 records negative obligated value (-$138.97 million), which likely reflects deobligations or downward adjustments rather than new funding.
Use FPDS Query for deeper award and vehicle analysis
Explore federal procurement data with custom SQL, fast filtering, and deeper contract action analysis across agencies, vendors, NAICS, PSC, 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.