Award Number

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

Federal procurement profile for award number N0002416C2431 under agency ID 9700, covering obligations and actions in the last 10 years.

This page summarizes award activity for PIID N0002416C2431 over the last 10 years. The award shows total obligated amount of 2.80 billion across 419 actions, with an average action value of 6,676,149.56.

Generated at 03/20/2026

Analysis period: Last 10 years

Totals reflect the provided analysis window and may differ from other reporting periods or sources.

Agency ID
9700
PIID
N0002416C2431
Type
Award
Total Obligated
2.80 billion
2,797,306,665.94
Actions
419
Average Action Value
6,676,149.56

Overview

For the last 10 years, award number N0002416C2431 under agency ID 9700 has recorded 419 actions and 2,797,306,665.94 in total obligated amount. The average action value is 6,676,149.56, indicating a high-volume award with repeated obligated activity over the analysis window.

How to use this page

Use this page to review award-level obligation totals, action count, and average action value for N0002416C2431. It is useful for quick comparison, filtering, and trend review within the provided 10-year window.

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 = 'N0002416C2431'
    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 2,797,306,665.94 2.80 billion 419

Insight

Obligations for PIID N0002416C2431 over the 10-year window are fully concentrated in a single top agency: the Department of the Navy. The Navy accounts for $2.80 billion across 419 awards, indicating a highly concentrated obligation profile 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 = 'N0002416C2431'
        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 1,554,030,665.94 1.55 billion 413
HUNTINGTON INGALLS INCORPORATED 1,243,276,000.00 1.24 billion 6

Insight

Obligations under PIID N0002416C2431 are highly concentrated in HUNTINGTON INGALLS INCORPORATED, which accounts for the largest share of funding in the 10-year window. The vendor appears in two entries, with $1.55 billion across 413 awards under CAGE 34293 and an additional $1.24 billion across 6 awards without a CAGE code, indicating substantial activity clustered with the same contractor identifier. This pattern suggests sustained, high-dollar dependence on a single vendor rather than 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 = 'N0002416C2431'
    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 2,797,306,665.94 2.80 billion 419

Insight

Obligations for PIID N0002416C2431 over the 10-year window are fully concentrated in NAICS 336611, Ship Building and Repairing. This NAICS accounts for $2.80 billion across 419 awards, indicating a sustained and highly focused procurement pattern with no diversification into other industries in the provided data.

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 = 'N0002416C2431'
    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 2,797,306,665.94 2.80 billion 419

Insight

Over the 10-year window for award N0002416C2431, obligations in the top PSC are fully concentrated in PSC 1905, Combat Ships and Landing Vessels, with $2.80 billion across 419 awards. This indicates a highly concentrated procurement profile centered on naval vessel-related requirements rather than a broadly distributed set of product categories. The volume of award actions suggests sustained activity within a single PSC over the period.

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 = 'N0002416C2431'
    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
2016 1,243,276,000.00 1.24 billion 6
2017 165,532,284.00 165.53 million 27
2018 1,281,333,703.00 1.28 billion 51
2019 29,829,002.00 29.83 million 67
2020 14,460,218.00 14.46 million 42
2021 7,993,268.94 7.99 million 80
2022 16,786,147.00 16.79 million 72
2023 17,725,634.00 17.73 million 40
2024 21,020,000.00 21.02 million 29
2025 -649,591.00 -649.59 thousand 5

Insight

Obligations for PIID N0002416C2431 are highly concentrated in 2016 and 2018, each exceeding $1.2 billion, while all other years are comparatively low, generally under $30 million. Award activity is more distributed across the period, peaking at 80 awards in 2021 and remaining elevated through 2024 before dropping to 5 awards in 2025. The 2025 negative obligated amount indicates a net deobligation and suggests continued downward adjustment in the most recent year.

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.