This award record summarizes obligation activity for PIID N0002420C2437 within agency ID 9700 across the last 10 years. The award totals $3,154,163,794 in obligated value across 160 actions, for an average action value of $19,713,523.71.
Award Number
Award Number 9700 / N0002420C2437 Federal Contract Action Summary (Last 10 Years)
Award number N0002420C2437 for agency 9700 shows 160 actions over the last 10 years and $3.15 billion in total obligations.
Total obligated values are shown as provided in readable and exact forms, and the analysis window covers the last 10 years.
Overview
The award history for PIID N0002420C2437 shows 160 recorded actions in the last 10 years. Across those actions, total obligated value is $3,154,163,794, with an average action value of $19,713,523.71. This page is focused on the award-level obligation record for agency ID 9700.
How to use this page
Use this page to review how obligation activity is distributed across the award over the analysis window. The action count and average action value provide a quick read on transaction volume and scale, while the total obligated amount gives the full award-level funding figure.
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 = 'N0002420C2437'
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 | 3,154,163,794.00 | 3.15 billion | 160 |
Insight
All identified obligations for PIID N0002420C2437 in the 10-year window are concentrated in a single top agency, the DEPT OF THE NAVY (agency ID 1700). This agency accounts for $3.15 billion across 160 awards, indicating a highly concentrated distribution of activity within the Navy. No other agencies appear in the provided rows, so no broader cross-agency spread is evidenced here.
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 = 'N0002420C2437'
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 |
|---|---|---|---|---|
| HUNTINGTON INGALLS INCORPORATED | 34293 | 3,154,163,794.00 | 3.15 billion | 160 |
Insight
HUNTINGTON INGALLS INCORPORATED is the sole top vendor for this award over the 10-year window, with 160 awards totaling $3.15 billion. This indicates complete concentration of obligated dollars with a single vendor and a high level of vendor dependency for this PIID. The distribution suggests sustained award activity rather than a broad vendor base.
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 = 'N0002420C2437'
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 | 3,154,163,794.00 | 3.15 billion | 160 |
Insight
Obligations for this award are fully concentrated in NAICS 336611, Ship Building and Repairing, totaling $3.15 billion across 160 awards/actions in the 10-year window. This indicates a highly focused procurement profile aligned with ship construction and repair activity, with no other NAICS codes represented in the provided rows. The concentration suggests this award has been consistently associated with a single industrial base rather than a diversified set of goods or services.
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 = 'N0002420C2437'
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 |
|---|---|---|---|---|
| 1905 | COMBAT SHIPS AND LANDING VESSELS | 3,154,163,794.00 | 3.15 billion | 160 |
Insight
Obligations are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, with $3.15 billion obligated across 160 awards in the 10-year window. This indicates a narrow product/service mix for this award, with spend focused entirely in a single PSC rather than distributed across multiple categories. The award count suggests repeated activity within the same ship-related PSC, consistent with sustained procurement in this area.
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 = 'N0002420C2437'
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 |
|---|---|---|---|
| 2020 | 350,000,000.00 | 350.00 million | 3 |
| 2021 | 278,999,999.00 | 279.00 million | 7 |
| 2022 | 93,000,001.00 | 93.00 million | 6 |
| 2023 | 745,486,545.00 | 745.49 million | 39 |
| 2024 | 1,099,150,613.00 | 1.10 billion | 63 |
| 2025 | 587,526,636.00 | 587.53 million | 42 |
Insight
Obligations are highly concentrated in 2023–2025, which account for the clear majority of activity in the 10-year window. Annual obligated amounts were comparatively low in 2020–2022, then increased sharply in 2023 and peaked in 2024 at $1.10 billion across 63 awards. In 2025, obligations declined to $587.53 million, but award volume remained elevated at 42 awards, indicating continued activity at a lower funding level.
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.