This page summarizes award number N0002418C2406 for agency ID 9700 during the last 5 years. The record shows 2.61 billion in total obligated amount across 235 actions, with an average action value of 11,115,111.76.
Award Number
Award Number 9700 / N0002418C2406 Federal Contract Action Summary (Last 5 Years)
Federal award record for PIID N0002418C2406 under agency ID 9700, showing obligations and action activity over the last 5 years.
Amounts reflect the provided analysis window and may not represent the full life of the award outside that period.
Overview
Award number N0002418C2406 is associated with agency ID 9700 and shows 2,612,051,263 in total obligated amount within the last 5 years. The award has 235 recorded actions, producing an average action value of 11,115,111.76. These figures provide a compact view of activity volume and obligation magnitude for this record.
How to use this page
Use this page to review the scale and frequency of award activity tied to PIID N0002418C2406. The action count and average action value help compare this record with other awards in the same analysis window. The total obligated amount supports a quick read of overall funding level.
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 = 'N0002418C2406'
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 | 2,612,051,263.00 | 2.61 billion | 235 |
Insight
Within the 5-year window for award PIID N0002418C2406, obligations are concentrated entirely with the DEPT OF THE NAVY (agency ID 1700). This agency accounts for the full reported obligated amount of 2.61 billion across 235 awards, indicating a highly concentrated obligation pattern with no other agencies represented 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 = 'N0002418C2406'
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 |
|---|---|---|---|---|
| HUNTINGTON INGALLS INCORPORATED | 34293 | 2,612,051,263.00 | 2.61 billion | 235 |
Insight
Over the 5-year window, obligations for PIID N0002418C2406 are fully concentrated with HUNTINGTON INGALLS INCORPORATED (CAGE 34293). The vendor accounts for $2.61 billion across 235 awards, indicating sustained obligation activity to a single recipient rather than a distributed vendor base. This level of concentration suggests the award history for this PIID is highly centralized.
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 = 'N0002418C2406'
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 | 2,612,051,263.00 | 2.61 billion | 235 |
Insight
Obligations for PIID N0002418C2406 are fully concentrated in NAICS 336611, Ship Building and Repairing, with $2.61 billion obligated across 235 awards in the 5-year window. This indicates a highly specialized procurement profile with no observed diversification across other NAICS codes in the provided data. The volume and dollar concentration are consistent with a platform or production effort centered on ship construction and repair activities.
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 = 'N0002418C2406'
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 |
|---|---|---|---|---|
| 1905 | COMBAT SHIPS AND LANDING VESSELS | 2,612,051,263.00 | 2.61 billion | 235 |
Insight
Over the 5-year window for award PIID N0002418C2406, PSC 1905 (Combat Ships and Landing Vessels) accounts for the full reported obligation, totaling $2.61 billion across 235 awards. This indicates complete concentration in a single PSC, with no diversification across other product or service categories in the provided data. The award activity is distributed across a relatively high number of awards, suggesting repeated obligations within the same procurement category rather than a one-time transaction.
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 = 'N0002418C2406'
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 | 968,560,157.00 | 968.56 million | 75 |
| 2022 | 245,622,973.00 | 245.62 million | 46 |
| 2023 | 1,299,573,106.00 | 1.30 billion | 34 |
| 2024 | 12,346,926.50 | 12.35 million | 39 |
| 2025 | 85,948,100.50 | 85.95 million | 41 |
Insight
Obligations for PIID N0002418C2406 were highly concentrated in 2023, when total obligated funding reached 1.30 billion across 34 awards, well above all other years in the 5-year window. Prior years were also substantial but lower, at 968.56 million in 2021 and 245.62 million in 2022, indicating a sharp increase followed by a decline. Funding then dropped materially in 2024 to 12.35 million, before rising modestly to 85.95 million in 2025, while award counts remained comparatively stable between 34 and 75 annually.
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.