Award Number

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

Federal procurement summary for award N0002421C2106 under agency ID 9700, covering obligations and action history over the last 5 years.

This page summarizes award number N0002421C2106 for agency ID 9700 across the last 5 years. The record shows $3.36 billion in total obligated funding across 1,258 actions, with an average action value of $2,667,914.92.

Generated at 03/20/2026

Analysis period: Last 5 years

Totals reflect the provided analysis window and include the exact obligated amount of $3,356,236,971.67.

Agency ID
9700
PIID
N0002421C2106
Type
Award
Total Obligated
3.36 billion
3,356,236,971.67
Actions
1,258
Average Action Value
2,667,914.92

Overview

The award record for N0002421C2106 shows $3,356,236,971.67 in total obligated dollars during the last 5 years. Across 1,258 actions, the average action value is $2,667,914.92, indicating a high-volume obligation history within the analyzed period.

How to use this page

Use this page to review the scale and frequency of obligations tied to award number N0002421C2106. The action count, total obligated amount, and average action value provide a concise baseline for procurement analysis and comparison.

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 = 'N0002421C2106'
    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 3,356,236,971.67 3.36 billion 1,258

Insight

Over the past 5 years, obligations for PIID N0002421C2106 are concentrated entirely with the DEPT OF THE NAVY, which accounts for $3.36 billion across 1,258 awards. This indicates a highly concentrated funding pattern with no other agencies represented in the provided rows. The distribution suggests the award activity is driven by a single agency relationship rather than a broader interagency mix.

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 = 'N0002421C2106'
        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 43689 3,356,236,971.67 3.36 billion 1,258

Insight

Over the 5-year window, obligations for PIID N0002421C2106 are fully concentrated with HUNTINGTON INGALLS INCORPORATED (CAGE 43689), which accounts for $3.36 billion across 1,258 awards. This indicates a highly concentrated vendor profile with all observed obligation volume in the provided data attributed to a single contractor. The award volume suggests repeated obligation activity rather than a broad vendor distribution.

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 = 'N0002421C2106'
    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 3,356,236,971.67 3.36 billion 1,258

Insight

Obligations for PIID N0002421C2106 are fully concentrated in NAICS 336611, Ship Building and Repairing, with $3.36 billion obligated across 1,258 awards over the 5-year window. This indicates the award portfolio is narrowly focused in a single industrial classification rather than distributed across multiple NAICS codes. The volume of awards suggests repeated procurement activity within the same shipbuilding and repair domain.

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 = 'N0002421C2106'
    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 3,356,236,971.67 3.36 billion 1,258

Insight

Obligations for PIID N0002421C2106 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, totaling $3.36 billion across 1,258 awards in the 5-year window. This indicates a highly focused procurement pattern with no observed diversification across other PSCs in the provided data. The award volume suggests repeated activity within the same product category rather than broad category dispersion.

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 = 'N0002421C2106'
    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 1,254,941,676.00 1.25 billion 611
2022 804,700,313.00 804.70 million 541
2023 604,054,804.00 604.05 million 35
2024 295,073,212.00 295.07 million 30
2025 397,466,966.67 397.47 million 41

Insight

Obligations under PIID N0002421C2106 declined sharply from 2021 through 2024, falling from $1.25 billion to $295.07 million, with a partial rebound to $397.47 million in 2025. Award activity was heavily concentrated in 2021 and 2022, which together account for 1,152 of the 1,258 awards in the 5-year window, while 2023 through 2025 show substantially fewer awards and lower obligated amounts. This pattern indicates a shift from high-volume, high-dollar activity to a much smaller annual distribution in the later years.

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.