This page presents an analyst view of award number N0002419C2210 for agency ID 9700. Over the last 5 years, the award shows total obligations of $1.13 billion across 95 actions, with an average action value of $11.92 million.
Award Number
Award Number 9700 / N0002419C2210 Federal Contract Action Summary (Last 5 Years)
Federal procurement summary for award number N0002419C2210 under agency ID 9700, covering obligations and action history over the last 5 years.
Totals reflect the provided analysis window and may differ from transaction-level detail due to rounding.
Overview
Award number N0002419C2210 is associated with agency ID 9700 and records $1,132,870,644.81 in total obligated value over the last 5 years. The award includes 95 actions, which yields an average action value of $11,924,954.16. These figures provide a concise view of award activity and funding scale within the selected period.
How to use this page
Use this page to review the overall obligation level, action volume, and average action value for award N0002419C2210. The figures can support procurement screening, workload review, and comparisons with other awards in the same analysis window.
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 5 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,132,870,644.81 | 1.13 billion | 95 |
Insight
Over the 5-year window for award PIID N0002419C2210 under agency ID 9700, all reported obligation is concentrated in a single top agency: the DEPT OF THE NAVY. It accounts for $1.13 billion across 95 awards, indicating a highly concentrated obligation pattern with no additional agency distribution reflected in the provided rows.
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 5 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 | 649,436,697.47 | 649.44 million | 40 |
| BOLLINGER MISSISSIPPI SHIPBUILDING, LLC | 3BJ86 | 483,433,947.34 | 483.43 million | 55 |
Insight
Obligations for PIID N0002419C2210 are highly concentrated among two vendors over the past 5 years. VT HALTER MARINE, INC. received $649.44 million across 40 awards, while BOLLINGER MISSISSIPPI SHIPBUILDING, LLC received $483.43 million across 55 awards. Both vendors share the same CAGE code (3BJ86), indicating that obligated activity is concentrated within a single vendor identity or closely related entities.
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 5 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,132,870,644.81 | 1.13 billion | 95 |
Insight
Obligations for PIID N0002419C2210 over the 5-year window are fully concentrated in NAICS 336611, Ship Building and Repairing. This NAICS accounts for $1.13 billion across 95 awards, indicating sustained activity in a single industry category rather than a diversified NAICS distribution. The concentration suggests the award is tightly aligned to ship construction and repair requirements.
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 5 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,132,870,644.81 | 1.13 billion | 95 |
Insight
Obligations for PIID N0002419C2210 over the 5-year window are fully concentrated in PSC 1925, Special Service Vessels, totaling $1.13 billion across 95 awards. This indicates a narrow procurement profile with no visible diversification across PSCs in the provided data. The distribution suggests the award activity is consistently centered on a single vessel-related service category.
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 5 YEAR
AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
| Year | Total Obligated | Readable | Actions |
|---|---|---|---|
| 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 concentrated in 2021 and 2025, each exceeding $600 million, while 2022 and 2023 reflect much lower funding levels at $44.15 million and $8.83 million, respectively. The 2024 annual total is negative at -$138.97 million, indicating a substantial de-obligation or adjustment year rather than net new obligation growth. Award counts remain relatively steady across the period, ranging from 12 to 26 actions annually, suggesting the obligation pattern is driven more by funding magnitude than by action volume.
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 5 years view into full FPDS Query workflows with deeper filtering, custom SQL, saved queries, and broader market comparison.