Award Number

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

FPDS award page for award number N0002421C2106 under agency ID 9700, showing 10 years of obligation and action history.

This page summarizes award number N0002421C2106 for agency ID 9700 over the last 10 years. It shows 1,258 actions and total obligated funding of $3,356,236,971.67.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the selected 10-year analysis window and the exact obligated amount in FPDS records.

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

Award number N0002421C2106 under agency ID 9700 has 1,258 recorded actions in the last 10 years. Total obligated funding in that window is $3,356,236,971.67, with an average action value of $2,667,914.92.

How to use this page

Use this page to review the award’s obligation volume and action frequency over the selected period. The figures support basic procurement analysis, trend review, and cross-checking against FPDS records.

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

Insight

For award PIID N0002421C2106 over the 10-year window, obligations are fully concentrated in the DEPT OF THE NAVY. The agency accounts for $3.36 billion across 1,258 awards, indicating a highly concentrated funding pattern within a single top agency. This distribution suggests the award activity is materially tied to Navy obligations rather than being spread across multiple agencies.

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

Insight

For PIID N0002421C2106 over the 10-year window, obligations 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 no other vendors represented in the provided rows. The volume of awards suggests repeated obligation activity to a single incumbent supplier.

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

Insight

The award’s obligations are fully concentrated in NAICS 336611, Ship Building and Repairing, with $3.36 billion obligated across 1,258 awards over the 10-year window. This indicates a highly focused procurement profile centered on ship construction and repair activity, rather than a diversified mix of industries. The high award count alongside very large total obligation suggests sustained, repeated spending in this core shipbuilding category.

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

Insight

Obligations under PIID N0002421C2106 are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, totaling $3.36 billion across 1,258 awards over the 10-year window. This indicates a highly focused procurement profile with no evidence in the provided data of material distribution across other PSCs. The award pattern suggests sustained activity within a single ship-related product 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 = 'N0002421C2106'
    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
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 from 1.25 billion in 2021 to 804.70 million in 2022, then fell further to 604.05 million in 2023 and 295.07 million in 2024, before increasing to 397.47 million in 2025. Award activity was concentrated in 2021-2022, with 611 and 541 awards, respectively, compared with 35 in 2023, 30 in 2024, and 41 in 2025. The sharp drop in award count after 2022 indicates a much lower transaction frequency in the later years, while obligations remained sizable despite fewer awards.

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.