Award Number

Award Number 9700 / N0002420C2437 Federal Contract Action Summary (Last 5 Years)

Analysis of award number N0002420C2437 for agency 9700 over the last 5 years.

This page summarizes federal procurement activity for award number N0002420C2437 within agency 9700. The record shows 157 award actions and $2.80 billion in total obligated value over the last 5 years.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the last 5 years of available action history and include an exact obligated amount of 2804163794.

Agency ID
9700
PIID
N0002420C2437
Type
Award
Total Obligated
2.80 billion
2,804,163,794.00
Actions
157
Average Action Value
17,860,915.89

Overview

Award number N0002420C2437 has 157 recorded actions in the last 5 years, with total obligated value of $2.80 billion. The average action value is $17,860,915.89, indicating substantial per-action funding across the analysis window. These figures describe only the observed award history in the provided period.

How to use this page

Use this page to review the scale and frequency of obligation activity tied to award number N0002420C2437. The action count, total obligated amount, and average action value support quick screening of the award's procurement pattern over time.

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 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,804,163,794.00 2.80 billion 157

Insight

Within the 5-year window, obligations for PIID N0002420C2437 are concentrated entirely in one agency: the Department of the Navy, which accounts for $2.80 billion across 157 awards. This indicates a highly concentrated award profile with no observed distribution to other agencies in the provided rows. The concentration suggests the award activity is driven by Navy demand rather than cross-agency use.

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 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,804,163,794.00 2.80 billion 157

Insight

HUNTINGTON INGALLS INCORPORATED accounts for the full reported obligation in this 5-year window, with $2.80 billion across 157 awards. This indicates complete vendor concentration for PIID N0002420C2437, with no other vendors represented in the provided rows. The award activity is distributed across a relatively high count of actions, suggesting repeated funding to a single incumbent rather than diversification across suppliers.

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 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,804,163,794.00 2.80 billion 157

Insight

Obligations for PIID N0002420C2437 are fully concentrated in NAICS 336611, Ship Building and Repairing, with $2.80 billion obligated across 157 awards over the 5-year window. This indicates a highly focused procurement profile tied to a single industrial category, with no evidence of diversification across other NAICS codes in the provided data. The award count suggests repeated activity within the same sector rather than broad obligation distribution.

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 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,804,163,794.00 2.80 billion 157

Insight

Award PIID N0002420C2437 is entirely concentrated in PSC 1905, Combat Ships and Landing Vessels, with $2.80 billion obligated across 157 awards over the 5-year window. This indicates a highly focused procurement profile with no apparent diversification across PSCs in the provided data. The volume of awards suggests recurring obligations within the same equipment category rather than broad spending distribution.

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 5 YEAR
    AND parseDateTimeBestEffortOrNull(content__award__relevantContractDates__signedDate) < toStartOfYear(now())
GROUP BY year
ORDER BY year ASC
Year Total Obligated Readable Actions
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 for PIID N0002420C2437 were concentrated in 2023–2025, with a sharp increase from 93.00 million in 2022 to 745.49 million in 2023 and a peak of 1.10 billion in 2024. Award volume followed the same pattern, rising from 6–7 awards in 2021–2022 to 39 in 2023, 63 in 2024, and 42 in 2025. The 2021–2022 period reflects comparatively low activity, while the later years indicate materially higher and more dispersed award issuance.

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.